PHP beginner |
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<?php
if(isset($_POST['sub']))
{
$handle = fopen("berichten.txt","a"); fwrite($handle,"|".$_POST['naam']."|".$_POST['bericht']);
fclose($handle);
}
?><form action="" method="post">
<p>
naam</p>
<p>:
<input name="naam" id="naam">
</p>
<p> email</p>
<p>:
<input name="email" id="email">
</p>
<p> bericht</p>
<p>:
<textarea name="bericht" cols="70" rows="5" id="bericht"></textarea><br>
<input type="submit" name="sub">
</p>
</form>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> </head> <body> <?php { $handle = fopen("berichten.txt","a"); fwrite($handle,"|".$_POST['naam']."|".$_POST['bericht']); } ?><form action="" method="post"> <p> naam</p> <p>: <input name="naam" id="naam"> </p> <p> email</p> <p>: <input name="email" id="email"> </p> <p> bericht</p> <p>: <textarea name="bericht" cols="70" rows="5" id="bericht"></textarea><br> <input type="submit" name="sub"> </p> </form> </body> </html>
heb ik om berichten op te slaan alleen ik kom er niet helemaal uit hoe je dat dan op een andere pagina in een<marqee></marqee> plakt
even help a.u.b.
alvast bedankt
|