Hey, I have learned forms upto now. If i had this as the code: Name: <?php echo $_POST["name"]?> Last Name: Name: <?php echo $_POST["lastname"]?> How would i get so if more than one person sent in this information from the form, (code not shown) it would display one after the other? Thanks alot. Matt
You will need to store the information they have sent into a databse such as mysql, then retrieve all the information and display it.
You can even store the variables in text file or session... Well it's the later stage of PHP... First you have to decide the importance of the fields in the form..