Posted by Gary Hasler on 10/26/42 11:59
mypetprogrammer@gmail.com wrote:
>
> <?php
>
> extract($_POST);
>
> print $SQQ1."<br />";
> print $SQQ2."<br />";
> print $SQQ3."<br />";
>
> ?>
But you need it in text format, right?
How about something like:
<?php
foreach ($_POST as $key=>$val) {
print $key . ":\n" . $val . "\n";
}
?>
Navigation:
[Reply to this message]
|