Jump to content

Im making a registration script and having problems


JamesThePanda

Recommended Posts

hey guy

Im making a registration script for my login script

Im just wondering as Im realy new with php and mysql

 

what can I do to check that the query was executed properly.

 

I wanted to use some form of "if else" function

 

<?php
$host = "localhost";
$username = "root";
$password = "";
$db_name = "members";
$tbl_name = "memtable";

mysql_connect($host,$username,$password) or die (mysql_error());
mysql_select_db($db_name) or die (mysql_error());

$username1 = $_POST['username1'];
$password1 = $_POST['password1'];

mysql_query("INSERT INTO 'memtable'('name','password') VALUES('$username1','$password1')");

echo 'done';

?>

 

 

Any Suggestions

 

Thanks

 

James

Link to comment
Share on other sites

mysql_query returns false on failure. You're also using a lot of unnecessary single quotes.

 

$result = mysql_query("INSERT INTO memtable (name, password) VALUES('$username1','$password1')");
if(!$result)
{
     echo "There was an error!: " . mysql_error();
}

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.