Jump to content

PHP/MySQL Messaging System?


Far Cry

Recommended Posts

How would I go about making one of theese???? I REALLY need one for my site I have a users table and a login and reg system here is the user table

 

 

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

);

Link to comment
https://forums.phpfreaks.com/topic/203325-phpmysql-messaging-system/
Share on other sites

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.