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>';

?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to