+ 1
Pls after creating a sign up form for my websites, how will I save the their input into a database for use later like for login
3 Réponses
+ 1
Here you need some php lines,,
First: make a connect to database ( search about mysqli_connect('host name' , 'userName', 'password', 'databaseName'))
Second: you need an insert query into database table ( search about INSERT INTO $tableName (column name) VALUES ($_POST('$input1')
The $input1 referes to the value of name attribute in html input element....
Hope this helps you
0
Yes thanks
0
Awojobi Godfrey you are welcome..