Salve a tutti!Ho creato un file php x la mia chat e mi dice che c'è un errore nella stringa 9!Ho provato tante cose ma non riesco a risolvere!mi aiutate? ![Crying](https://forum.it.altervista.org/images/smilies/frown.png)
ecco qui lo script:
Codice PHP:
<?php
session_start();
$nome = htmlspecialchars($_POST['nome']);
include(connessione.php');
if($_SESSION["Nome"] == ""){
$_SESSION["Nome"] = $nome;
}else{
echo ("Attenzione, dovete inserire un nome valido<br/>");
echo ('<a href="prechat.html">Indietro</a>');
exit();
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Chat</title>
</head>
<body>
<div align=”center”><iframe name=”visualizza” width=”95%” height=”90%” frameborder=”1″ src="chat_visualizza.php"></iframe></div>
<div align=”center”><iframe name=”input” align=”bottom” width=”85%” height=”50″ frameborder=”1″ src="chat_input.php" scrolling=”no”></iframe></div>
</body>
</html>