Far Cry Posted May 30, 2010 Share Posted May 30, 2010 DROP TABLE IF EXISTS users; CREATE TABLE users ( username varchar(30) primary key, password varchar(32), userid varchar(32), userlevel tinyint(1) unsigned not null, email varchar(50), timestamp int(11) unsigned not null ); Here is my current users table can someone help me write the actually code for the PMing system? Quote Link to comment https://forums.phpfreaks.com/topic/203350-how-to-make-a-private-messaging-system/ Share on other sites More sharing options...
kenrbnsn Posted May 30, 2010 Share Posted May 30, 2010 If you want someone to help you, please post in the Freelancers section. This area is for help on code you've written. Quote Link to comment https://forums.phpfreaks.com/topic/203350-how-to-make-a-private-messaging-system/#findComment-1065348 Share on other sites More sharing options...
-Karl- Posted May 30, 2010 Share Posted May 30, 2010 That's only a users table, you'd either need to change it, or create a PM table, with a PM ID, the content, userID of the sender, userID of the receiver, etc. then it's as simple as inputting and outputting the data using queries. Quote Link to comment https://forums.phpfreaks.com/topic/203350-how-to-make-a-private-messaging-system/#findComment-1065349 Share on other sites More sharing options...
Andy-H Posted May 30, 2010 Share Posted May 30, 2010 Can you define your opinion of what 'help' is? You can't expect to come here, post the layout of your table and expect someone to write the code for you free of charge... Either post in the freelance section, or try and write the code yourself, then if you come across problems post your code here and we will "help" you... Quote Link to comment https://forums.phpfreaks.com/topic/203350-how-to-make-a-private-messaging-system/#findComment-1065351 Share on other sites More sharing options...
PFMaBiSmAd Posted May 30, 2010 Share Posted May 30, 2010 Any reason you started this thread when you already had an existing thread where someone had already bothered to ask if you had a specific question about doing this - http://www.phpfreaks.com/forums/index.php/topic,299607.0.html Quote Link to comment https://forums.phpfreaks.com/topic/203350-how-to-make-a-private-messaging-system/#findComment-1065369 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.