|
Posted by Jason Barnett on 05/03/05 23:10
Lisa A wrote:
> Does anyone know of a good easy php script or Form that we can use with
> Front Page.
> We need a form to get results, that actually sends the results in a format
> that is easy to read.
> Not all run together with no spaces, etc. like the Front Page forms.
> Thanks,
> Lisa A
<?php
/** File Action.php
* This page should be the action for your form page
*/
/** Formatting */
echo '<pre>';
/** Print out form vars */
print_r($_GET);
print_r($_POST);
/** Not 100% accurate, but an alternative if you're lazy */
print_r($_REQUEST);
/** Just for completeness, the closing tag */
echo '</pre>';
?>
Navigation:
[Reply to this message]
|