Jump to content

[SOLVED] marking set?


Crew-Portal

Recommended Posts

I am redesigning my site and I want to make it more efficent as in using less pages! I had it before going for login there were 2 pages login and logingo. login contained forms and logingo had the SQL connections. But how do I make it so that the SQL does not activate until the button "Login" is pressed. may seem kinda stupid but I want it so that the logins are on one page! I know it is a isset thing but how do I use it?

Link to comment
Share on other sites

Try something like this -

<?php if (isset($_POST['login'])) { //if login pressed
do LoginStuff_Here;
} else { //else show form
?>
<form action=# method=post>
User: <input type=text name=lname><br>
Password: <input type=password name=pass><br>
<input type=submit name=login value=Login!>
<?php } ?>

 

Hope this helps,

Steve

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.