Anyone know or have an example of this?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
KyZu
Forum Newbie
Posts: 17
Joined: Sun Apr 24, 2011 9:13 pm

Anyone know or have an example of this?

Post by KyZu »

Hey guys, I'm looking for an example of a program that works like this. Say I send this request to a website in the form of:
devnetwork.net/generator?name=BobJones&email=bjones@bob.com
I just need the browser to echo out a simple, random serial. I thought it wouldn't hurt to ask whether anyone may know if there's an example of this anywhere? I just want something to compare my ideas too.

thanks a lot
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: Anyone know or have an example of this?

Post by Benjamin »

Code: Select all

echo uniqid();
Post Reply