Forum: PHP Feb 20th, 2008 |
| Replies: 19 Views: 1,448 can u give us the code that u have so that we can see where u are getting it wrong |
Forum: PHP Jan 28th, 2008 |
| Replies: 9 Views: 1,841 to concatenate in php you use a period/full stop
change this line
echo "<p>",$lname, ", ",$fname, ", ",$dob;
to
echo "<p>".$lname. ", ". $fname. ", ".$dob. ",".$reg_num; |