I thought I had the problem worked out, but I was wrong. The code worked when outputin to a table but, fails to work in a textfield in a form.
<tr>
<td width="14"> </td>
<td width="108"><div align="right">Question#:</div></td>
<td width="464"><input name="faqnum" type="text" value = "<?php echo htmlspecialchars(stripslashes($row['faqnum']));?>" size="5" maxlength="3"></td>
<td width="14"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><div align="right">Question:</div></td>
<td><textarea name="faqques" cols="85" rows="4" value= '<?php echo htmlspecialchars(stripslashes($row["faqques"]));?>'></textarea></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><div align="right">Answer:</div></td>
<td><textarea name="faqans" cols="85" rows="10" value="<?php echo htmlspecialchars(stripslashes($row['faqans']));?>" ></textarea></td>
<td> </td>
</tr>
Elements with "faqques" and "faqans" do not display in the form even though they do display in the table browse on the prior page. I'm going nuts with this .....😕
Every time I think I have the answer I discover sooo many more questions.