Jump to content

Auto Fill Form Based On Session Login


thelee

Recommended Posts

can someone help me.the username box can show the session username.how i can auto fill the address part ? i use this code but got error at the address form.

here is the code

 

<?php
error_reporting(E_ALL);
session_start();
if(!isset($_SESSION['MM_Username'])) {
echo "You are not logged in or registered / Click <a href='login.php'>Here</a> to login !";
} else {
?>


<style type="text/css">
<!--
body { background:#000; background-attachment:fixed; background-repeat:no-repeat; color:#fff; font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; }
table { background:#000; border:1px solid white;}
-->
</style>
</head>



<body>
<p><b>Welcome <?PHP echo $_SESSION['MM_Username']; ?> !</b></p>
<form name="form1" method="post" action="order_product_process.php">
<p align="center" class="style10"> </p>
<p align="center" class="style10"> </p>
<p align="center" class="style10"> </p>
<p align="center" class="style10"> </p>
<p align="center" class="style10">Order Form:</p>
<div align="center">
<table width="500" >
<tr>
<td width="239">Username</td>
<td width="249">
<input name="username" type="text" id="username" value="<?PHP echo $_SESSION['MM_Username']; ?>" readonly="true"></td>
</tr>
<tr>
<td>Address</td>
<td><textarea name="address" id="address" value="<?PHP echo $_SESSION['MM_address']; ?>></textarea></td>


<td><input type="submit" name="Submit" value="Order"> <input name="Reset" type="reset" id="Reset" value="Reset"></td>
</tr>
</table>
</div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</form>
</body>
</html>
<?php } ?>

Edited by thelee
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.