Mysql
 sql >> Database >  >> RDS >> Mysql

Query PHP MySQL Dove x =$variabile

Quello che stai facendo adesso è aggiungere . sulla stringa e non concatenando. Dovrebbe essere,

$result = mysqli_query($con,"SELECT `note` FROM `glogin_users` WHERE email = '".$email."'");

o semplicemente

$result = mysqli_query($con,"SELECT `note` FROM `glogin_users` WHERE email = '$email'");