hallo liebe leude,
ich habe ein problem mir alt und neu PHP version
index.php :
...
<div id="formulaire">
<form method="post" action="avis.php" onSubmit='if ( this.nom.value.length < 2 ) { return false ;}' >
<!-- Connexion rapide nom uniquement-->
<div id="connexion">
<table>
<tr><td>Votre nom :</td>
<td><input type=text name=nom size=10></td>
</tr>
</table>
</div>
<!-- Contenu de ma partie fantome noir -->
<div id="fantome">
<div id="message">
<tr><td>Votre avis :</td><td colspan=2>
<br /><textarea name=message rows=1 cols=640></textarea>
</td><td rowspan=1><input type=submit value=ok class="boutonOk"></td></tr>
</div>
</div>
</form>
</div>
<!-- Affichage des message en temps réel -->
<div id="espaceInformations">
<?php include("avis.txt"); ?>
</div>
</div>
</body>
</html>
------------------------------------------------
avis.php :
<?php
//Ouverture du fichier en ecriture
$fp = fopen("https://avis.jetform.fr/avis.txt","a");
//On convertit les caracteres html
$nom = htmlspecialchars($_POST['nom']);
//$url = htmlspecialchars($_POST['url']);
$message = stripslashes(nl2br(htmlentities($_POST['message'])));
$d = date ( "d/m/Y H:i:s" );
$page = "";
//$lurl = "<a target=\"_blank\" href=\"$url\">$url</a>";
$page .= "<p class='avis'><b>$nom</b> - $d<br>$message<br><hr></p>\n";
//On rajoute le message
fwrite($fp,"$page" ,strlen("$page"));
//fermeture du fichier
fclose($fp);
echo "
<div>
<a href='index.php'> retour </a>
<div>
<p style='margin: 0px; top: 30%; width: 100%; text-align: center; color: rgba(51, 29, 149, 1); padding-top: 150px; font-size: 100px; position: relative;'>Merci</p>
</div>
</div>
";
?>
Aber es schreibt nicht in die avis.txt file
Vielen dank in Voraus
ich habe ein problem mir alt und neu PHP version
index.php :
...
<div id="formulaire">
<form method="post" action="avis.php" onSubmit='if ( this.nom.value.length < 2 ) { return false ;}' >
<!-- Connexion rapide nom uniquement-->
<div id="connexion">
<table>
<tr><td>Votre nom :</td>
<td><input type=text name=nom size=10></td>
</tr>
</table>
</div>
<!-- Contenu de ma partie fantome noir -->
<div id="fantome">
<div id="message">
<tr><td>Votre avis :</td><td colspan=2>
<br /><textarea name=message rows=1 cols=640></textarea>
</td><td rowspan=1><input type=submit value=ok class="boutonOk"></td></tr>
</div>
</div>
</form>
</div>
<!-- Affichage des message en temps réel -->
<div id="espaceInformations">
<?php include("avis.txt"); ?>
</div>
</div>
</body>
</html>
------------------------------------------------
avis.php :
<?php
//Ouverture du fichier en ecriture
$fp = fopen("https://avis.jetform.fr/avis.txt","a");
//On convertit les caracteres html
$nom = htmlspecialchars($_POST['nom']);
//$url = htmlspecialchars($_POST['url']);
$message = stripslashes(nl2br(htmlentities($_POST['message'])));
$d = date ( "d/m/Y H:i:s" );
$page = "";
//$lurl = "<a target=\"_blank\" href=\"$url\">$url</a>";
$page .= "<p class='avis'><b>$nom</b> - $d<br>$message<br><hr></p>\n";
//On rajoute le message
fwrite($fp,"$page" ,strlen("$page"));
//fermeture du fichier
fclose($fp);
echo "
<div>
<a href='index.php'> retour </a>
<div>
<p style='margin: 0px; top: 30%; width: 100%; text-align: center; color: rgba(51, 29, 149, 1); padding-top: 150px; font-size: 100px; position: relative;'>Merci</p>
</div>
</div>
";
?>
Aber es schreibt nicht in die avis.txt file
Vielen dank in Voraus