I have a nice little page working just fine except some information isn't displaying properly in my HTML form.
For example, I have a "name" field in my database but only the first name shows up in my HTML form.
Any ideas?
Here is a little "snippet" from my code:
echo"<FORM ACTION='updatebio.php?bio_id=$myeditrow[id]' METHOD='POST'>";
echo"<TABLE BORDER='0' CELLPADDING='0' CELLSPACING='0'>";
echo"<TD>";
echo"Name:<BR><INPUT SIZE='20' NAME='name' VALUE=$myeditrow[name]>";
echo"</TD>";
echo"<TD VALIGN='TOP' ROWSPAN='2'>";
echo"<IMG SRC='../images/$myeditrow[img]' WIDTH='75'>";
echo"</TD>";
Any help is GREATLY appreciated!