PHP full help part2....
Moderator: General Moderators
PHP full help part2....
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....
- JAB Creations
- DevNet Resident
- Posts: 2341
- Joined: Thu Jan 13, 2005 6:44 pm
- Location: Sarasota Florida
- Contact:
Re: PHP full help part2....
If you want to view all the data from a submitted form try this...
...or this...
Code: Select all
<?php
echo '<div><pre>';
print_r($_POST);
echo '</pre></div>';
?>Code: Select all
<?php
echo '<div><pre>';
var-dump($_POST);
echo '</pre></div>';
?>