Re: A little help please....
- From: Gary Hasler <garyhasler@xxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 28 Sep 2006 15:45:42 GMT
mypetprogrammer@xxxxxxxxx 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";
}
?>
.
- References:
- A little help please....
- From: Ken.Blair
- Re: A little help please....
- From: mypetprogrammer
- A little help please....
- Prev by Date: Re: How to check for multiple @'s
- Next by Date: Re: Parse Errors & Quote Marks
- Previous by thread: Re: A little help please....
- Next by thread: Apache+php on Windows
- Index(es):