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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.