Hi, :)
I'm in need of a private messaging system that comes with a login. Or perhaps an existing user system with a messaging system built in.
Any ideas?
Printable View
Hi, :)
I'm in need of a private messaging system that comes with a login. Or perhaps an existing user system with a messaging system built in.
Any ideas?
I could easily build one for you if you wanted. (free because I'm kind)
Well if you would I'd appreciate it. :)
All it needs is a login, inbox, outbox, send message, sent messages, nothing too fancy. An admin panel is optional (for deleting/viewing all mail).
Thanks a lot! :O
I could do with one of these really. :P
Started coding it now. :)
http://rapidshare.com/files/170615372/pm.zip
Didn't have the time to finish it, sorry.
How far is it, and is anyone else up for the challenge?
Just looking at a small part of your code.
Why have you used variable names. You can just havePHP Code:{
public function mysql_connect( $hostname, $username, $password, $database )
{
$db_connect = mysql_connect( $hostname, $username, $password );
$sr_connect = mysql_select_db( $database );
}
You don't actually need to define variables unless you plan to use them later or w/e.PHP Code:{
public function mysql_connect( $hostname, $username, $password, $database )
{
mysql_connect( $hostname, $username, $password );
mysql_select_db( $database );
}
But nice of you for trying :) Also why have you put the public function as an actual reserved function? Im confused. Well have fun learning PHP :D