Jump to content

[SOLVED] How can I insert an md5 into database?


forumnz

Recommended Posts

I want to choose a random number and convert it to an md5 string inside the db query.

 

This is what I have:

mysql_query("INSERT INTO chart_of_accs (hash_key, acc_hash, type, code, name, description, tax, show_exp_claims, sys_locked) VALUES ('$demo_hash', '(md5(rand() + rand() + rand()))', 'r_r', '200', 'Sales', 'Income', 'gst_n', '1', '0')");

 

In the DB it comes up with (md5(rand() + rand() + rand()))

 

What can I do to make it work?

 

Thanks

Sam

Link to comment
Share on other sites

Also, another tip is dont use (rand() + rand() + rand()). Instead, you could concatenate it into (rand() . rand() . rand()).

 

Adding results into a number such as 1.215972.

Concatenating will turn it into 0.37496290.293623890.239672 which is more random.

 

mysql_query("INSERT INTO chart_of_accs (hash_key, acc_hash, type, code, name, description, tax, show_exp_claims, sys_locked) VALUES ('$demo_hash', '" . md5(rand() . rand() . rand()) . "', 'r_r', '200', 'Sales', 'Income', 'gst_n', '1', '0')");

 

This should probably work because you are exiting text mode and using the function.

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.