Jump to content

WAP redirect error


bravo14

Recommended Posts

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

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.