for some reason mysql query not working, not inserting, please check it out
Posted on
16th Feb 2014 07:03 pm by
admin
This code is not inserting anything into my db, don't know why, the $_SESSION variable does contain data.
Please have a look.
Code:
Did you know?Explore Trending and Topic pages for more stories like this.
function add_user_to_db()
{
//print_r($_SESSION['user_reg']);
$username = $_SESSION['user_reg']['username'];
$password = $_SESSION['user_reg']['password'];
$email = $_SESSION['user_reg']['email'];
$first_name = $_SESSION['user_reg']['first_name'];
$last_name = $_SESSION['user_reg']['last_name'];
$pharmacyname = $_SESSION['user_reg']['pharmacyname'];
$contact_number = $_SESSION['user_reg']['contact_number'];
$connection = db_connect();
$query = "INSERT INTO `pharma_edu`.`users` (`user_id`, `username`, `password`, `email`, `first_name`, `last_name`, `pharmacy_name`, `contact_number`, `user_access`, `active`) VALUES (NULL, '$username','$password', '$email', '$first_name', '$last_name', '$pharmacyname', '$contact_number', '1', 'n')";
if (mysql_query($query))
{
return true;
}else{
return false;
}
}
add_user_to_db();
No comments posted yet
Your Answer:
Login to answer
231
21
Other forums
How to secure my login data to my database?
Hi there,
It may be a stupid question but I don't know how to secure my login data to my data
output_buffering so rewrite
I'm planning to rewrite some of my scripts so they don't have to use output buffering to accomplish
How do i do multi uploads?.
Hey i would like to do this : http://hosting.mrkrabz.net/
I've got the base down you can uplo
Update data to upper case in parent/child tables
Hi Gurus!
In production we have a product table and which is being reference by many tabl
Using CSS to format MySQL query
Hi,
If i want to have a news page on my site, which displays all records of a table in descen
Php navigation
I have four buttons on a php page.
If i click a button it will redirect to different php pages.
help with Get_
ok some how this is not working i am not sure what i am doing wrong here but what this does is when
mysql select with $_get ?
Hi, i have this code:
Code: // If char id is 0 and character dont exist do:
if ($_GET["id
tag inside php... hi
Code: <?php echo "<td width="$columnWidth%" align=&Unable to retreve the values from Mysql Query Hi,
Here is the php code that I have, Query is running properly in phpmyadmin and is resu
|