it can parse wml pages...
coz i have other wml pages that don't have php script in it, and it works fine...
though when i try inserting php script it doesn't seem to parse the php script...
here's a sample page i uploaded on the server
<?php
header("Content-Type: text/vnd.wap.wml");
echo "<?xml version=\"1.0\"?>\n";
echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\" \"http://www.wapforum.org/DTD/wml_1.1.xml\";>\n";
?>
<wml>
<card id="mailcard" title="Hello!!">
<p>
<? echo "hello!"; ?>
</p>
</card>
</wml>
...the header is being parsed...
but the php script "echo 'hello!'", was not parsed...
hope u can help me with this one...
thanks!
jane =)
deepak wrote:
is your server configured to parse wml pages...
'cause i make thses wml pages in php with extensions same as the other http pages...and it works fine...