Просмотр файла gta/includes/inc_mes.php

Размер файла: 256B
  1. <?php
  2. $mess_q = mysql_query("select * from messagi where komu='$id' order by id desc limit 1;");
  3. if(!empty($mess_q))
  4. {
  5. while($arrm=mysql_fetch_array($mess_q))
  6. {
  7. print str_replace('$$(','$(',str_replace('$','$$',$arrm['msg']))."<br/>";
  8. }
  9. }
  10. ?>
  11.