how to echo this line
<td><input name="name" type="text" class="inputs" id="user" value="<? echo $form->value("name"); ?>"/></td>
doesnot works
echo "<td><input name='name' type='text' class='inputs' id='user' value='<? echo $form->value(\"name\"); ?>'/></td>";
and also not working
echo "<td><input name='name' type='text' class='inputs' id='user' value='" . htmlspecialchars("<? echo $form->value(\"name\"); ?>").";
textbox value should be empyt
You want print value of
$form->value("name")?I yes use:
Should result with:
If return value of
$form->value('name')isVALIf not:
Which should result with: