dazboy Posted December 30, 2009 Posted December 30, 2009 Hi Im Woundering How To get This Code Telling People Whos Mailing Them Can AnyOne Help Me Quote
Mcfarlin Posted December 31, 2009 Posted December 31, 2009 Explain a little more bro. the mail already tells you who its from, how are you wanting it to let em know ? Quote
dazboy Posted February 28, 2010 Author Posted February 28, 2010 When someone is messaging you it shows you at the op of your screen eg This gangster is currently mailing Quote
Jordan Palmer Posted February 28, 2010 Posted February 28, 2010 When someone is messaging you it shows you at the op of your screen eg This gangster is currently mailing Why would you want that :/ Quote
bluegman991 Posted March 1, 2010 Posted March 1, 2010 if u want to add field to users do this: (not using mccodes so bare with me) add field [mysql]ALTER TABLE `users` ADD `mailingto` INT NOT NULL [/mysql] in mailbox.php in the send case add this where $db->query("UPDATE `users` SET `mailingto`='{$_GET['to']}' WHERE userid='{$userid}'"); in header.php where ever you want it to display add $mtomeqr=$db->query("SELECT `username`,`userid` FROM `users` WHERE `mailingto`={$userid}"); if($db-num_rows($mtomeqr)) { echo "Users composing mail to you:"; while($mtome=$db->fetch_row($mtomeqr)) { echo "<a href=\"viewuser?u={$mtome['userid']}\">{$mtome['username']},</a>"; } } there are about 3 more ways i can think of to do this.. and also ways to make it show for multiple users but this is a quick solution u can also do this using javascript so u dont have to refresh view this Quote
Dayo Posted March 1, 2010 Posted March 1, 2010 you would have to clear the `mailingto` feild every so often as the list would only get bigger Quote
bluegman991 Posted March 1, 2010 Posted March 1, 2010 add this to globals $curruri=$_SERVER['REQUEST_URI']; if(!preg_match("/\/mailbox?to/",$curruri) { $db->query("UPDATE `users` SET `mailingto`='' WHERE userid='{$userid}'"); } may need to add a slash before the question mark but keep in mind this is not tested i came up with it on the spot Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.