PHPverse 2025

Voting

: min(eight, seven)?
(Example: nine)

The Note You're Voting On

logang at deltatee dot com
24 years ago
If you want to pass all post and get values to the cgi script you can use this code:

<?php
$QSTRING
= $QUERY_STRING;
while (list (
$header, $value) = each ($HTTP_POST_VARS))
{
$QSTRING = $QSTRING.'&'.$header.'='.$value;
}

virtual($script.'?'.$QSTRING);
?>

It takes all the values of $HTTP_POST_VARS and appends them in the proper format to the values you get in $QUERY_STRING

<< Back to user notes page

To Top