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.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.