Hi All,
In the following code, the selected row from mysql database it populated in each cell, except for the "Content", where the syntax is slightly different, and obviously incorrect.
Please can somebody take a look at it for me and advise where it needs to be changed.
Thanks
<form action="#" method="post">
<p>EDIT ZONE <?php echo $row['id'];?> </p>
<label>Title: <input type="text" name="Title" value="<?php echo $row['Title'];?>" /></label><br />
<label>Subtitle: <input type="text" name="Subtitle" value="<?php echo $row['Subtitle'];?>" /></label><br />
<label>Content: <textarea name="Content" value="<?php echo $row['Content'];?>" /></textarea></label><br />
<label>Author: <input type="text" name="Author" value="<?php echo $row['Author'];?>" /></label><br />
<label>Date: <input type="text" name="Date" value="<?php echo $row['Date'];?>" /></label><br />
<input type="submit" value="Submit" name="send" /></p>
</form>