On Sun, 21 Oct 2001, Chip Landwehr wrote:
> if ($T3==""){header ("Location: new_narrative.php?FilledName=No");}
>
> How do I change this to include a Post?
You can put it back on as a query string (kinda dirty, but you can't POST
it back).
<?php
$myQueryString = "FilledName=No";
while( list( $key, $val ) = each( $HTTP_POST_VARS ) ){
$myQueryString .= "&" . $key . "=" . $val;
}
if( $T3 == "" ){
header( "Location: new_narrative.php?" . $myQueryString );
}
?>
~Chris /"\
\ / September 11, 2001
X We Are All New Yorkers
/ \ rm -rf /bin/laden
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]