
Binukjames
New User

May 31, 2008, 3:01 AM
Post #1 of 1
(868 views)
|
  i have created one wap site using WML and php. but its not working in Lg T mobile U8290 ,Lg cingular C2000 ,Sony Errisson Z500A cingular etc. i tried it with different"content types" for my php files ,but its giving different errors in different mobiles.(Lg cingular C2000 ,Sony Errisson Z500A cingular ,Lg T mobile U8290). following are some of the content types that i tried...plz help me <?php echo "<?xml version\"1.0\"?>"; echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\" \"http://www.wapforum.org/DTD/wml_1.1.xml\">"; ?> ------------------- <?php echo '<?xml version="1.0" encoding="iso-8859-1"?>' . "\n"; ?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> -------------------- <?php header("Content-type: text/vnd.wap.wml"); echo "<?xml version=\"1.0\"?>"; echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\" " \"http://www.wapforum.org/DTD/wml_1.1.xml\">"; ?> my php file ----------------- <?php header('Content-type: application/vnd.wap.xhtml+xml'); ?> <?php echo '<?xml version="1.0"?'.'>'; ?> <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">... <wml> <card id="homepage" title="Mobile Coupons"> <p align="center"> <img src="kta.jpg"/> </p> <p align="center"> Enter City or Zip:<input type="text" name="username" size="10"/> <anchor>Next <go method="post" href="validate.php"> <postfield name="username" value="$(username)"/> </go> </anchor> <br/> <anchor>About Us <go href="index.php"/> </anchor> <br/> <anchor>Advertise with Us <go href="index.php"/> </anchor> </p> </card> </wml>
|