Page 1 of 1

PHP full help part2....

Posted: Wed Mar 04, 2009 4:43 am
by maze027
good day experts... kindly help me with this situation.... i wanted to view/display all the inputted data of a certain student in table form.... how will i do it??? i am using PHP and MySQL,....and also am i able to do a SQL code creating a table??? pls help... thanks in advance....

Re: PHP full help part2....

Posted: Wed Mar 04, 2009 11:06 pm
by JAB Creations
If you want to view all the data from a submitted form try this...

Code: Select all

<?php
echo '<div><pre>';
print_r($_POST);
echo '</pre></div>';
?>
...or this...

Code: Select all

<?php
echo '<div><pre>';
var-dump($_POST);
echo '</pre></div>';
?>