Hi Guys,
As you can see in my script i am calling on
value=\"{$row['band_name']}\"
to be displayed in my text input field.
What i want to know is how do you do the same for the examples below? Where do i put the above script into the example below?
echo "<font face=Verdana, Arial size=2 color=red><b>Band Name:</b></font><br>";
echo "<input type=text name=band_name maxlength=30 size=25 value=\"{$row['band_name']}\"><br><br>";
echo "<font face=Verdana, Arial size=2 color=red><b>Genre:</b></font><br>";
echo "<select name=genre>";
echo "<option selected value=Rock>ROCK</option>";
echo "<option value=Hip Hop>HIP HOP</option>";
echo "<option value=Indy>INDY</option>";
echo "<option value=Techno>TECHNO</option>";
echo "<option value=Pop>POP</option>";
echo "</select><br><br>";
echo "<font face=Verdana, Arial size=2 color=red><b>Picture (Thumb):</b></font><br>";
echo "<input type=file name=picture_thumb size=25 maxlength=250 value=\"{$row['band_name']}\"><br><br>";
Cheers,
sam