<?php
 
header("Content-Type: text/vnd.wap.wml");
 
print('<?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">
 
<wml>
 
 <head>
 
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
 
 <meta http-equiv="cache-control" content="no-cache"/> 
 
 <meta name="MobileOptimized" content="width"> 
 
 </head>
 
<card title="My Wap Portal">
 
  <p mode="nowrap">
 
  <br />
 
  <?php
 
  include('mobile_func/chkisdn.inc.php');
 
  $objisdn=new check_isdn();
 
  $getmobilenumber=$objisdn->_get_mobile_number();
 
  ?>
 
  Your mobile number is <?php print($getmobilenumber); ?>
 
  <br />
 
  <small>© by My Company Name</small>
 
  </p>
 
 </card>
 
</wml>
 
 |