Search results

  1. D

    More Mysqli Errors

    Aye yae yae... Stupid stupid. I ended up testing with this: if ($stmt === FALSE) { die ("Mysql Error: " . $mysqli->error); Of course it found USERZIPCODE was spelled incorrectly.... Thanks for the help descalzo..
  2. D

    More Mysqli Errors

    Also just tried this: $mysqli = new mysqli($host, $user, $pass, $db_Name); $query = $mysqli->prepare("INSERT INTO USER (USERNAME, USERPASSWORD, USERFIRSTNAME, USERLASTNAME, USERADDRESS, USERCITY, USERSTATE, USERZIPCODE, USERCOUNTRY, USERPHONE1, USERPHONE2, USERFAX, USEREMAIL) VALUES...
  3. D

    More Mysqli Errors

    $mysqli = new mysqli($host, $user, $pass, $db_Name); $query ="INSERT INTO USER (USERNAME, USERPASSWORD, USERFIRSTNAME, USERLASTNAME, USERADDRESS, USERCITY, USERSTATE, USERZIPCODE, USERCOUNTRY, USERPHONE1, USERPHONE2, USERFAX, USEREMAIL) VALUES ('$email', '$pass', '$fName', '$lName'...
  4. D

    More Mysqli Errors

    Yes I'm testing different values and have tried various ways I j putting the data, namely the way you've shown using string and har tried without curly's, without quotes etc. sometimes I'll get the _T_Object error message other times I'll get a success but it never actually inserts data into the...
  5. D

    More Mysqli Errors

    hey all having problems iwth mysqli insert statements, anyone have aclue, here's my problem. $mysqli = new mysqli($host, $user, $pass, $db_Name); $mysqli->query("INSERT INTO USER (USERID, USERNAME, USERPASSWORD, USERFIRSTNAME, USERLASTNAME, USERADDRESS, USERCITY, USERSTATE, USERZIPCODE...
  6. D

    MySQL Error

    I seem to have fixed the issue. Anybody know if have a form direct to itself via submit will keep post data, doesn't seem to work for me. Trying to have a user login an set session variable and show it on screen. dreamcarclub.x10.bz
  7. D

    MySQL Error

    Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'dreamc90_dccREAD'@'localhost' (using password: YES) in/home/dreamc90/public_html/index.php on line 16 Access denied for user 'dreamc90_dccREAD'@'localhost' (using password: YES) This user has full privileges for testing...
Top