No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
I am working on a product reviews site using php and mysql, and have a table set up for product data, as well as review data. I am trying to get a list of top rated products within the last 24 hours to show up on the front page. This …
I have a web based program that I am trying to create, in which I will have a user create a profile, which optionally includes a homepage URL and/or blog URL. Since not every user will have a blog or a homepage to enter, I have moved that information to …
The unique id will work, or you could use the mysql_insert_id function to get the primary key of your last insert. say you have a query you wrote: [code] $sql = "INSERT INTO ..." $result = mysql_query($sql); $keyid = mysql_insert_id($result); [/code] Then keyid will have the primary key value, and …
The End.
nomadhacker