Data transfer part
Liu_
Liu_ 2017-12-17 23:16:23
0
1
1159

I don’t quite understand which part of the code is used to transfer the data entered by the user to the database

Liu_
Liu_

reply all(1)
dabour

$insert_sql="insert into user(username,password)values(? , ? )";

$stmt=mysqli_prepare($link,$insert_sql);

mysqli_stmt_bind_param($stmt,'ss',$name,$pwd);

$result_insert=mysqli_stmt_execute($stmt);


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template