Jump to content

Can't insert into DB


slpctrl

Recommended Posts

I've recently been getting back into PHP, and I've racked my brain over this incredibly simple piece of code, and can't figure out why I can't insert.

 

<?php
$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
$user = "********";
$pass = md5("********");
$email = "******@live.com";

mysql_select_db("users", $con) or die("unable to select DB");

mysql_query("INSERT INTO users ('user', 'pass', 'email')
VALUES ($user,$pass,$email)") or die("Can't insert info into DB " mysql_error());


mysql_close($con);
?> 

 

I know my error is within the insert command...I just don't understand why this isn't working. I've even copied the code straight from W3schools, and it still doesn't work. My MYSQL version is 5.5.24

 

mod edit: removed user/pass/email details

Link to comment
Share on other sites

<?php
$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
$user = "********";
$pass = md5("********");
$email = "******@live.com";

mysql_select_db("users", $con) or die("unable to select DB");

mysql_query("INSERT INTO users (user, pass, email)
VALUES ('$user', '$pass', '$email')") or die("Can't insert info into DB " mysql_error());


mysql_close($con);
?> 

 

mod edit: removed user/pass/email details

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.