Domain Login System

-1

Well let's see if you can help me! I'm trying to make a basic login system, however I have a problem, I'm still a beginner in php and I do not know much.

I'm trying to make this form work correctly.

<input name="dominio" type="text" placeholder="dominio.com" autocomplete="off" style="background-color:#cce0ff;color:#00f;" />
<br><br>
<input name="email" type="text" placeholder="[email protected]" autocomplete="off" style="background-color:#cce0ff;color:#00f;" />
<br><br>
<input name="senha" type="password" placeholder="**********" autocomplete="off" style="background-color:#cce0ff;color:#00f;" />
<br><br>
<input type="submit" name="Submit" id="Submit" value="Login" class="form-control element_style_9 event-submit-btn" onclick="submitClicked();return false;" />

Will anyone help me?

    
asked by anonymous 26.08.2018 / 19:45

1 answer

-2

Dude ... to create a login system, you first need to create a database with a table containing the information such as "username" "email" these things. after creating the form you need to tell the method used to transfer this data GET or POST and the action to the sending folder. example <form method = 'post' action = 'loading.php' </form> . then need a file in PHP (in this case the "loading.php") to make the connection to the database, check if the user is actually registered and open a session ... anyway you need to have a knowledge ja medium or even advanced in PHP and also some knowledge in SLQ (database) using PHPMYADMIN or the SQL console.

    
27.08.2018 / 23:19