bravo14 Posted June 20, 2010 Share Posted June 20, 2010 Hi all I am trying to automatically redirect WAP users to a mobile site. The code I have is <?php if(preg_match("/vnd.wap.wml/",$_SERVER['HTTP_ACCEPT'])){ header("Location: http://79.170.44.125/platinumbrides.co.uk/mobile"); exit; } ?> <?php include_once('includes/connect.php') ?> <?php error_reporting(E_ALL); ini_set('display_errors', 1); include('includes/connect.php'); $sql=("SELECT * FROM `tbl_pages` WHERE `page_title` = 'Home'"); $result=mysql_query($sql); if(mysql_num_rows($result)==0) { die("Database problems!"); } $row = mysql_fetch_array($result); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/platinum.dwt.php" codeOutsideHTMLIsLocked="false" --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- InstanceBeginEditable name="doctitle" --> <title><?php echo $row['page_title'];?></title> <!-- InstanceEndEditable --> When I navigate to it on my phone the error says Warning: CAnnot modify header information - headers already sent by (output started at /home/sites/platinumbrides.co.uk/public_html/index.php:2) in /home/sites/platinumbrides.co.uk/public_html/index.php on line 4 Any ideas why this is showing Link to comment https://forums.phpfreaks.com/topic/205353-wap-redirect-error/ Share on other sites More sharing options...
Pikachu2000 Posted June 20, 2010 Share Posted June 20, 2010 Make certain there is no whitespace before the header() redirect. In the code above, there is a linefeed before the <?php tag. Link to comment https://forums.phpfreaks.com/topic/205353-wap-redirect-error/#findComment-1074752 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.