I have been trying to to send a php output inside a html code, but I don't want build the text box in run-time mode using php like the second example below.
I want that the html text box gets built in together with a php instruction by parsing a database field ($mrow[n_name)) with it or if not possible after it.
the incorrect (what I want to do)
<input type="text" name="n_name" <?echo value=\"$myrow[n_mame]\";?> maxlength="50" size="50">
the correct (what I don't want to do)
<?echo "<input type=text name=n_name value=\"$myrow[n_mame]\" maxlength=50 size=50 >";?>
thanks in advance for any suggestions
Rod