Jump to content

[SOLVED] Generating completly random numbers


smc

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

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.