i'm trying to build a simple experimental WAP site. Well, I want it to display dynamic content, for instance, news and updates.
I am using WML to build the page and PHP to get the dynamic content from database.
The first page contains no PHP script, so I named it index.wml.
in this page, I have 3 menus, one of em is "Contact Us" (contact.php) which should display a form for user to fill in.
When I access the WAPsite using my handphone (N3650, N3100, and SonyEricsson T610), I can view the homepage (index.wml), but I always get "File Format unknown" or "Unsupported content-type" for contact.php!
I have added these lines:
<?php
header("Content-type:text/vnd.wap.wml");
print "<?xml version=\"1.0\"?>\r\n";
?>
on top of contact.php, but no cure. What do you think might be the problem? Thanks in advance for any reply.