Jump to content

Odd behavior of MySQL functions


s0urce

Recommended Posts

I have the following lines in my php code:

 

[php:1:46b06602e6]<?php

$Query1 = \"insert into table values (NULL, \'$user\', PASSWORD(\'$pass\'))\";

$Result1 = mysql_query($Query1, $DB);

$Query2 = \"select * from table where user=\'$user\' and pass=PASSWORD(\'$pass\')\";

$Result2 = mysql_query($Query2, $DB);

echo mysql_num_rows($Result2);

?>[/php:1:46b06602e6]

 

(column names are correct)

What is echoed is the number of rows returned. The number echoed is zero (0). How is that possible? Am I doing something wrong?

The same thing happens when I use an MD5 function. Also, I tried inserting new row with phpMyAdmin, and then reading it in php, but still it returned nothing. I also tried adding a new row in a console window, then reading it (with select) in a console window, and mysql returned an empty set.

However, when I try doing it without using mysql functions, then it works. For example, this works perfectly:

 

[php:1:46b06602e6]<?php

$Query1 = \"insert into table values (NULL, \'$user\', \'$pass\')\";

$Result1 = mysql_query($Query1, $DB);

$Query2 = \"select * from table where user=\'$user\' and pass=\'$pass\'\";

$Result2 = mysql_query($Query2, $DB);

echo mysql_num_rows($Result2);

?>[/php:1:46b06602e6]

 

What\'s wrong with the functions?

 

S0urce

Link to comment
Share on other sites

Not too sure on this one but ...

What is the field size defined for the password in the database?

 

I ask because there was a change in the password hash function in MySQL 4.1 - previous to this version, the hash function produced a 16 byte hash - after 4.1 it produces a 41 byte hash so if the table was created in the older version, its possible that the field isn\'t big enough.

 

By not using the hash function, the password is probably small enough to fit into the field.

 

Failing that, try a \'die\' clause to the insert statement to print out any error messages.

 

Hope that helps!

 

D

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.