|
-- Posted by yoshiness at 7:35 pm on Mar. 14, 2008
Google didn't help much... I am looking for a tutorial or a script for creating a private messaging system for my website... Does anyone know where??? I've tried pixel2art, and some gaming website, but they didn't help very much...
-- Posted by neotreo at 7:35 pm on Mar. 14, 2008
what language?
-- Posted by yoshiness at 7:36 pm on Mar. 14, 2008
Ummm... PHP / MySQL would be nice if possible
-- Posted by neotreo at 7:38 pm on Mar. 14, 2008
damn... ive never played with those... so i cant help you there. sorry.
-- Posted by allsmiles at 11:48 am on Mar. 16, 2008
What have you got in place already? I could write you up soemthing quick if you want.
-- Posted by yoshiness at 6:30 pm on Mar. 16, 2008
I've got a user registration/login system up. I just need some detailed tutorial that actually states what to name the file instead of guess, and hope it works... :/
-- Posted by allsmiles at 2:49 am on Mar. 17, 2008
You can name the file whatever you want o_O Did you fully understand the coding behind the registration system? 'Cos the concept of private messaging isn't that different; people submit data, you store it in the database (rather than having details on the person submitting the data, you have them fill in a to field, title field and message field), with a field to say whether it's been read or not, and then you have a bit of code to check whether someone's got any unread mail (SELECT * FROM `messages` WHERE `isRead` = '1'). If you don't understand it, perhaps it'd be better to just use a prebuilt CMS. Things are less likely to go wrong.
-- Posted by yoshiness at 10:19 am on Mar. 17, 2008
I figured it out myself before I found your message. :D I am still in the process of it all though. I thank you for your help:)
|