Jump to content

[SOLVED] Generating completly random numbers


Recommended Posts

How about make it auto-increment but start it on something random like 4932.

Nobody will be any the wiser then!

[code]ALTER TABLE table_name ADD column_name INT UNSIGNED NOT NULL AUTO_INCREMENT=4932[/code]

That should do it.

Regards
Huggie
[quote author=ProjectFear link=topic=124605.msg516537#msg516537 date=1170111884]
i was going to suggest timestamp to. just use time()
[/quote]

If you're going with timestamp, then just use mysql's now() function, don't worry about PHP's time() or microtime() functions at all.

INSERT INTO table_name (unique_id) VALUES (now())

Regards
Huggie
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.