This is a discussion on RE: function help redirect help within the PHP General forums, part of the PHP Programming Forums category; $payment = "1"; function payment(){ global $payment; if ($payment == "0"); header ("location:test_page.html"); } global $...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
$payment = "1";
function payment(){ global $payment; if ($payment == "0"); header ("location:test_page.html"); } global $payment; elseif ($payment == "1") { header ("location:test_page2.html"); } __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |