how to stop bank entry in php mysql server database

Solutions on MaxInterview for how to stop bank entry in php mysql server database by the best coders in the world

showing results for - "how to stop bank entry in php mysql server database"
Clea
25 Jul 2016
1if($name!="" && $email!=""){
2$sql="insert into info(name,email)values('".$name."','".$email."')";
3$query=mysqli_query($conn,$sql);
4                                                         
5}else{
6
7echo "All field are required";
8
9}
10