PHP full help part2....

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
maze027
Forum Newbie
Posts: 3
Joined: Thu Feb 26, 2009 6:11 am

PHP full help part2....

Post 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....
User avatar
JAB Creations
DevNet Resident
Posts: 2341
Joined: Thu Jan 13, 2005 6:44 pm
Location: Sarasota Florida
Contact:

Re: PHP full help part2....

Post 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>';
?>
Post Reply