Page 1 of 1

HTML error

Posted: Wed Jul 13, 2011 3:58 pm
by MDAds
Hi,
I'm sure it's not an html error, more of a user error. But I'm getting text at the top of this page:
http://www.mobideviceads.com/pbma.html
and I can't figure out why.
Lil help please.
Thanks,
MDA

Re: HTML error

Posted: Wed Jul 13, 2011 4:02 pm
by kamermans
I can see from your page's source code that your server is not parsing the page as PHP:

Code: Select all

<?php
 
require_once("Tera-Wurfl/TeraWurfl.php");
$wurflObj = new TeraWurfl();
$wurflObj->getDeviceCapabilitiesFromAgent();
$isWireless = $wurflObj->getDeviceCapability("is_wireless_device");
 
if($isWireless)
	header("location: http://www.m.mobideviceads.com/pbma.html");
 
?>
This is because your file extension is .html. You will need to rename the file to pbma.php