Salve ragazzi, sono ore che sbatto la testa contro il problema della creazione di una chat... Posto qui ciò che ho creato, e se qualcuno ci capisce qualcosa spero che possa spiegarmi gli errori...
Please...
input.php
<html>
<head>
<title>input.php</title>
?>
</head>
<body>
<form action="chat.php" method="post">
<input type="text" name="messaggio">
<input type="submit" value="invia">
</body>
</html>
chat.php
<html>
<head>
<title>chat.php</title>
</head>
<body>
<?php
while ($_POST['messaggio'] != NULL) {
print ("$_POST['messaggio']");
}
?>
</body>
</html>
chatting.php
<html>
<head>
<title>Chat</title>
</head>
<body>
<frameset cols="80%, 20%">
<frame name="chat" src="chat.php">
<frame name="input" src="input.php">
</frameset>
</body>
</html>