Oct 10th, 2009, 4:50 PM
Ok I got it figured out...
The error was actually within the form itself... the calls to the values need to be in a value=" ". This is one you had:
The error was actually within the form itself... the calls to the values need to be in a value=" ". This is one you had:
PHP Code:
<?php
<input type="text" name="email" maxlength="20" style="width:150px" <?php echo htmlspecialchars(@$fields['email']); ?>/>
And it needs to be:
PHP Code:
<?php
<input type="text" name="email" maxlength="20" style="width:150px" value="<?php echo htmlspecialchars(@$fields['email']); ?>"/>
