> The 'pretty' enhancements are relatively easy - but I'm having a > problem trying to get the form data to redisplay.
Start by submitting the form to the script that renders the page: <form action="" method="post"> Then each field should of the form: <input type="text" name="username" value="<?php echo htmlspecialchars($_POST['username']); ?>" /> If the post data is valid, redirect. Otherwise, the form will automatically redisplay with the original values intact. _______________________________________________ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php
