In asp we use following kind of code, when we want to set value to html text fields
<input type="text" name="Name" value=<%= somevariable%>>
similarly how do i implement in php?
<input type="text" name="Name" value="<?= $somevariable ?>">
Or
<input type="text" name="Name" value="<? echo $somevariable ?>">
I tried the above already , but nothing happens.... got any other way out...
Is the file being parsed by php?
yep worked thanks all