The if bracket, yes.
Bye!
On Mon, Aug 3, 2020 at 20:20 Fernando Fiore <no5software@xxxxxxxxx> wrote:
i forgot a bracket, damn. sorry guys;Em seg., 3 de ago. de 2020 às 22:19, Fernando Fiore <no5software@xxxxxxxxx> escreveu:Awesome, thanks!Em seg., 3 de ago. de 2020 às 22:16, Aziz Saleh <azizsaleh@xxxxxxxxx> escreveu:Don't forget to never store passwords in plain text in the DB. Here is a few better ways of doing it:Also you might be better off using PDO (but that's just my opinion).On Mon, Aug 3, 2020 at 9:12 PM Rafael Mora <rafael.mora.guti@xxxxxxxxx> wrote:Hi,Maybe you should use the char ' in the values:("INSERT INTO users (nick, email, pw) VALUES('$nick', '$mail', '$pw');");You should also copy and paste the error you are getting.
Bye!----------------------------------------------Atentamente/Best regardsRafael MoraCel/Mob: +58-414-493.31.39Cel/Mob: +57-321-755.37.69Twitter @titanveOn Mon, Aug 3, 2020 at 8:06 PM Fernando Fiore <no5software@xxxxxxxxx> wrote:why this simple database operation does not workfunction AddToUsersTable($mail,$nick,$pw) // $mail is an email add{$db = new mysqli("localhost","root","","mydb");if($db){$mail = $db->real_escape_string($mail);//print($mail . "</br>");$nick = $db->real_escape_string($nick);$pw = $db->real_escape_string($pw);$q = $db->query("INSERT INTO users (nick, email, pw) VALUES($nick, $mail, $pw);");if($q)return true;else{ /* it fails here *;print($db->error);return false;}}else{print("failed to connect to db </br>");return false;}}// thanks in advance
----------------------------------------------
Atentamente/Best regards
Rafael Mora
Cel/Mob: +58-414-493.31.39
Cel/Mob: +57-321-755.37.69
Twitter @titanve