Inbox Dialog Lavalair script

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

    Inbox Dialog Lavalair script

    PHP Code:
      $pms mysql_query("SELECT byuid, text, timesent FROM ibwf_private WHERE (byuid=$uid AND touid=$who) OR (byuid=$who AND touid=$uid) ORDER BY timesent LIMIT $limit_start$items_per_page"); 
    This dialogue is the inbox, which is read out from the old to the new message ... What's the deal that the senses perceive messages from newer to older.

    #2
    PHP Code:
    $pms mysql_query("SELECT byuid, text, timesent FROM ibwf_private WHERE (byuid=$uid AND touid=$who) OR (byuid=$who AND touid=$uid) ORDER BY timesent DESC LIMIT $limit_start$items_per_page"); 

    Comment


      #3
      Thanks brooo

      Comment

      Working...
      X