Is it possibile to code a PHP chat that auto refreshes? Maybe using Javascript? 😃
how 'bout a meta refresh
<meta http-equiv="Refresh" content="15; URL=chatpage.php">
that will refresh chatpage.php every 15 seconds
if it's a private chat:
{ $sql = 'SELECT time FROM user WHERE id=(slash)\''.$_SESSION[id].'(slash)\''; $query = mysql_query($sql); $ref = mysql_fetch_array($query); echo '<META HTTP-EQUIV="refresh" content="'.$ref[time].';URL=http://www.site.com/chat.php">'; }