Jump to content

About PHP WAP/WML MySql


nemesisphp

Recommended Posts

Just want to ask how to create a login system using these wml and php?

i have a background on connecting html php and the database..

 

but in these wml i am confused.. can someone help me? :)

 

What i'ved got here is

 

Wap Proof for wap emulator to test my codes..

You can download it here

http://www.wap-proof.com/

 

i have tried this code but i gets me to error..

// login.php 
<?php 
# Header Info 
header('Content-Type: text/vnd.wap.wml', true); 
header("Cache-Control: no-cache, must-revalidate"); 
header("Pragma: no-cache"); 
# Version Type 
print "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>"; 
# Import config file 
include "/home/jamieb/private/conf.php"; 
# Connect to database 
mysql_connect($dbhost, $dbuser, $dbpass); 
mysql_select_db($dbname); 
?> 
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> 

<wml> 

<!-- THIS IS THE LOGIN CARD --> 
<card id="login" title="Login"> 
<p> 
<do type="accept" label="Login"> 
<go href="process.php" method="post"> 
<postfield name="userName" value="$userName" /> 
<postfield name="password" value="$password" /> 
</go> 
</do> 
</p> 

<p> 
User Name: <input title="userName" name="userName" /> <br /> 
Password : <input title="password" name="password" type="password" /> <br /> 
</p> 
</card> 

</wml>

 

 

 

// process.php 
<?php 
# Header Info 
header('Content-Type: text/vnd.wap.wml', true); 
header("Cache-Control: no-cache, must-revalidate"); 
header("Pragma: no-cache"); 
# Version Type 
print "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>"; 
# Import config file 
include "/home/jamieb/private/conf.php"; 
# Connect to database 
mysql_connect($dbhost, $dbuser, $dbpass); 
mysql_select_db($dbname); 
# Verify the user 
$sql = mysql_query("SELECT userName,nickName FROM table WHERE userName = '".strtolower($_POST['userName'])."' AND password = '".md5($_POST['password'])."'"); 
$row = mysql_num_rows($sql); 
$login = mysql_fetch_array($sql); 
$user = md5($login['userName']); 
$nick = $login['nickName']; 
if ($row == 0): 
?> 
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> 
<wml> 
<card id="failed" title="Login Failed"> 
<p> 
Sorry, username or password incorrect! 
</p> 

<p> 
<anchor>Home 
<go href="index.php#menu" /> 
</anchor> 
<do type="prev" label="Back"><prev/></do></p> 
</card> 
</wml> 

<?php 
exit; 
else: 
?> 

<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> 
<wml> 
<card id="success" title="Login Success"> 
<p> 
<do type="accept" label="Admin"> 
<go href="admin.php" method="post"> 
<postfield name="session" value="<?php echo "$user"; ?>" /> 
</go> 
</do> 
</p> 
<p>Welcome <?php echo "$nick"; ?>, please enter the admin area.</p> 
</card> 
</wml> 

<?php 
endif; 
?>

 

My problem here is it doesn't open anything on the wap proof.. or if i ever open it i can't see the submit button..

 

can someone give some login scripts using php wml? thanks

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.