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?

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!![]()
I could do with one of these really.![]()
i'm out of touch, i'm out of love
i'll pick you up when you're getting down
and out of all these things i've done
i think i love you better now
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 tryingAlso why have you put the public function as an actual reserved function? Im confused. Well have fun learning PHP
![]()
Last edited by Jackboy; 05-12-2008 at 10:25 PM.
public is a keyword, so the function in the class is publicly usable, you should read up on it ^_^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 tryingAlso why have you put the public function as an actual reserved function? Im confused. Well have fun learning PHP
Well i said what i was trying to say wrong
I was trying to say, whats the point in using public function mysql_connect when mysql_connect is already useable without that silly function there...
Want to hide these adverts? Register an account for free!