Monday, March 5, 2012

PHP, to avoid type login information lost


To avoid users to retype login infomation such as full name, you can change
<input type='text' name='fullname'>
to
<input type='text' name='fullname' vaule='<?php echo $fullname>'>
where
$fullname=$_POST['fullname'];

No comments:

Post a Comment