Skip to content

Commit c1e9098

Browse files
Update README.md
1 parent ca3d4aa commit c1e9098

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

php/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ if (!empty($_POST['btn_SetBodyValue']))
1414

1515
$form = new WebForms();
1616

17-
$form->SetFontSize(InputPlace::Tag('form'), $FontSize);
18-
$form->SetBackgroundColor(InputPlace::Tag('form'), $BackgroundColor);
19-
$form->SetDisabled(InputPlace::Name('btn_SetBodyValue'), true);
17+
$form->setFontSize(InputPlace::tag('form'), $FontSize);
18+
$form->setBackgroundColor(InputPlace::tag('form'), $BackgroundColor);
19+
$form->setDisabled(InputPlace::name('btn_SetBodyValue'), true);
2020

21-
$form->AddTag(InputPlace::Tag('form'), 'h3');
22-
$form->SetText(InputPlace::Tag('h3'), "Welcome " . $Name . "!");
21+
$form->addTag(InputPlace::tag('form'), 'h3');
22+
$form->setText(InputPlace::tag('h3'), "Welcome " . $Name . "!");
2323

2424
echo $form->response();
2525
exit();

0 commit comments

Comments
 (0)