how to code PM INBOX AND USERS PROFILE

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    how to code PM INBOX AND USERS PROFILE

    can u please tell me how to code these? please really need for coding my own forum

    #2
    you expecting that someone will code it for you here?
    Advertise your mobile site for FREE with AdTwirl

    Comment


      #3
      no...but iif they can am jst asking for examples

      Comment


        #4
        Code:
        $res = mysql_query("SELECT * FROM inbox WHERE id='".set->id()."' AND foruser='".set->username()."' ORDER BY time LIMIT 1");
        
        while ($row = mysql_fetch_array($res)) 
        
           {
           $text = codes($row['message']);
           echo "<div><a href=\"?a=profile&amp;user=$row[poster]\">$row[poster]</a><br/>$row[subject]<br/>Time: $row[time]<br/>--<br/> $text</div>\n";
           echo "<a href=\"?a=replypm&amp;who=$row[poster]&amp;subject=Fwd:$row[subject]\">Reply Inbox</a><br/>";
           echo "<a href=\"?a=delpm&amp;id=$row[id]\">Delete Pm</a>";
           }
        Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
        Visit: WapMasterz Coming Back Soon!
        _______
        SCRIPTS FOR SALE BY SUBZERO
        Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
        FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
        _______
        Info & Tips
        php.net
        w3schools.com

        Comment

        Working...
        X