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
~206 People Reached
Favorite Tags
php x 1

2 Posted Topics

Member Avatar for jonathan.oberhaus

Have you tried hashTables? I find them very useful when searching. Perhaps I am mistaken but Hashtabels are faster than array's aswell, because when seraching threw arrays, it starts from element 0 and moves its way up until if finds the source, while HashTables simply takes a guess at where …

Member Avatar for Momerath
0
122
Member Avatar for Millsy013

[code=php]//create and issue the first query $add_topic_sql = "INSERT INTO forum_topics (topic_title, topic_create_time, topic_owner) VALUES ('$_POST[topic_title]',now(),'$_POST[topic_owner]')"; $add_topic_res = mysql_query($conn, $add_topic_sql) or die(mysql_error($conn)); //get the id of the last query $topic_id = mysql_insert_id($mysql);[/code]

Member Avatar for network18
0
84

The End.