Jump to content

How to make a Private Messaging system?


Far Cry

Recommended Posts

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?

Link to comment
https://forums.phpfreaks.com/topic/203350-how-to-make-a-private-messaging-system/
Share on other sites

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...

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.