Jump to content

[SOLVED] A weird problem about taking data..


Rommeo

Recommended Posts

Hi

I have a really weird problem about selecting data from mysql.

My problem is

$name = "blue";
echo "Name :".$name;
$sql1 = "SELECT * FROM tablecolors WHERE name ='$name'  ";
$results = mysql_query($sql1) or die(mysql_error());
	$row = mysql_fetch_assoc( $results ); 

$sectionid = $row['colorid'];
echo "Color section id is :".$sectionid;

Works fine.. Output is :

Name : blue

Color section id is : 3

 

But this one is not working

$name = $_POST['name'];
echo "Name :".$name;
$sql1 = "SELECT * FROM tablecolors WHERE name ='$name'  ";
$results = mysql_query($sql1) or die(mysql_error());
	$row = mysql_fetch_assoc( $results ); 

$sectionid = $row['colorid'];
echo "Color section id is :".$sectionid;

Output :

Name : blue

Color section id is :

 

Color section id is empty.. I could not find the reason why. Both codes are same only the difference is one takes data from post. I ll be glad if anyone can help.

 

Thanks in Advance.

 

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.