Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~499 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for nomadhacker

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 …

Member Avatar for nav33n
0
86
Member Avatar for nomadhacker

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 …

Member Avatar for nomadhacker
0
118
Member Avatar for OmniX

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 …

Member Avatar for nomadhacker
0
295

The End.