Created
March 8, 2016 04:48
-
-
Save khairulhasanmd/1491ccad755c05626520 to your computer and use it in GitHub Desktop.
get all post-data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo'<table>'; | |
foreach ($_POST as $key => $value) { | |
echo "<tr>"; | |
echo "<td>"; | |
echo $key; | |
echo "</td>"; | |
echo "<td>"; | |
echo $value; | |
echo "</td>"; | |
echo "</tr>"; | |
} | |
echo '</table>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment