Jump to content

Please help me to create simple if and else php script


linux1880

Recommended Posts

Google + php.net will give you all answers you need in this case..

 

<?php 

if($_SERVER['REMOTE_ADDR'] == "10.0.0.2") {
   header("Location: url1.php");
} else if($_SERVER['REMOTE_ADDR'] == "10.0.0.3") {
   header("Location: url2.php");
}
//and so on...
?>

Thank you sir,

 

but it says

 

Warning: Cannot modify header information - headers already sent by (output started at /home/beehix/WQ020065/htdocs/index.php:21) in /home/beehix/WQ020065/htdocs/index.php on line 5466

 

 

what I am getting this error ?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.