Okay I am sorry I think this is becoming harder then it really is...
So I'll try to list a few things out.
I have this form:
<tr> <td><p>Admin User: </P></td> <td> <input type="text" size="30" name="adminuser" maxlength="20" value="<? echo $adminuser; ?>"> </td></tr>
<tr> <td><p>Admin Password: </P></td> <td> <input type="text" size="30" name="password" maxlength="20" value="<? echo $password; ?>"> </td></tr>
<tr> <td><p>License Key: </P></td> <td> <input type="text" size="30" name="licnesekey" maxlength="20" value="<? echo $licensekey; ?>"> </td></tr>
<tr> <td><p>URL of script: </p></td> <td> <input type="text" size="30" name="website" maxlength="250" value="<? echo $website; ?>"> </td></tr>
<tr> <td><p>Site Name: </p></td> <td> <input type="text" name="title" size="30" maxlength="250" value="<? echo $webtitle; ?>"> </td></tr>
<tr> <td><p>Meta Description: </p></td> <td> <input type="text" name="description" size="30" maxlength="250" value="<? echo $description; ?>"> </td></tr>
<tr> <td><p>Meta Keywords: </p></td> <td> <input type="text" size="30" name="keywords" maxlength="250" value="<? echo $keywords; ?>"> </td></tr>
<tr> <td><p>Header Ad: </p></td> <td> <textarea rows="5" cols="20" name="headerad" wrap="physical" value="<? echo $headerad; ?>"> </td></tr>
<tr> <td><p>Footer Ad: </p></td> <td> <textarea rows="5" cols="20" name="footerad" wrap="physical" value="<? echo $footerad; ?>"> </td></tr>
<tr> <td><p>Britepic ID: </p></td> <td> <input type="text" size="6" name="britepic" maxlength="6" value="<? echo $britepic; ?>"> </td></tr>
The headerad and footerad parts of the form I'd like to be text areas since I'll be having people put in adsense, or other types of ad code.
The issue is the form stops working when using the above method. What happens is it shows all the fields up to headerad. Inside the headerad textarea box it escapes the form and displays the actual form data from inside the page. Please see: http://www.upntag.com/pictures/96ae5a8b9ec179d85eca7923dc7773cb.jpg. Note: See how the form code is displayed in the image, this is not from the DB, but from the actual content of the form.
Inside the DB field for headerad is a value of 1. All I am trying to do is get it display that value correctly in a textarea. But because the form escapes and quits working on the headerad section it does not display the value from the DB nor does it display the rest of the fields.
Thank you for your help and putting up with me 🙂.
Mark
I hope this helps some.