Forum Moderators: coopster

Message Too Old, No Replies

How to create .php pages for WAP mobile

how to generate wap pages in php format

         

miki777

1:39 am on Dec 27, 2005 (gmt 0)

10+ Year Member



how to generate wap pages for mobile phones in php format

coopster

2:09 pm on Dec 27, 2005 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



Welcome to WebmasterWorld, miki777.

PHP generates whatever you tell it. So, for example, if you wanted to generate an entire web page in PHP you merely echo the HTML source to the browser like this:

<?php 
echo '<html>';
echo '<head>';
echo '<title>Title</title>';
echo '</head>';
echo '<body>';
echo '<p>Hello!</p>';
echo '</body>';
echo '</html>';
?>
The same follows suit for any other device you are sending the output.

miki777

2:27 pm on Dec 27, 2005 (gmt 0)

10+ Year Member



thanks coopster