Jump to content

Problem redisplaying form information


aquatsr

Recommended Posts

Uhhh. I'm not sure what you mean. I'm using this:

English Excerpt<br /><textarea name="engexcerpt" rows="6" cols="50" value="<?php echo htmlspecialchars(stripslashes($excerpt)); ?>"</textarea><br /><br />

Link to comment
Share on other sites

are you using it like this:echo "<texarea..blah...>{$rows[2]}</textarea>";?Because you dont use value for textarea ;-)
reportingsjr is right, it should be:<textarea name="engexcerpt" rows="6" cols="50"><?php echo htmlspecialchars(stripslashes($excerpt)); ?></textarea>
Got it, thanks! :)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...