bestand wegschrijven in txt file
ik ben met php aan het oefenen en ik ben bezig om een berichtscroller te maken:
<html>
<body>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?php
$bericht = $_GET['bericht'];
$bericht=strip_tags($bericht);
if($_SERVER['REQUEST_METHOD'] == 'GET'){
echo "<marquee><font color=red face=system>$bericht</marquee>";
}
else
{
?>
$bericht = $_GET['bericht'];
$bericht=strip_tags($bericht);
if($_SERVER['REQUEST_METHOD'] == 'GET'){
echo "<marquee><font color=red face=system>$bericht</marquee>";
}
else
{
?>
<form name="bericht" action="bericht.php" method="get">
<input type=text name=bericht>
<input type=submit name=verzenden value=bereken>
</form>
</body>
</html>
dit werk wel, maar ik heb gelezen dat je het op kan slaan in een leeg txt bestand.
hoe moet ik dit maken en is dit mogelijk?
Jep das mogelijk, kdacht dat we een tut over de files hadden :)
en hoe moet ik dat doen, is er ook een artikel over ?
http://www.phphulp.nl/php/tutorials/2/112
Dit is er 1tje :)
Dit is er 1tje :)
<html>
<body>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
$file = "test.txt";
$invoegen = $_GET['bericht'];
$fopen = fopen($file, "a");
fwrite($fopen, $invoegen);
fclose($fopen);
$file = "test.txt";
$fopen = fopen($file, "r");
$data = fgets($fopen, 4096);
fclose($fopen);
$bericht = $_GET['bericht'];
$bericht=strip_tags($bericht);
if($_SERVER['REQUEST_METHOD'] == 'GET'){
echo "<marquee><font color=red face=system>$data</marquee>";
}
else
{
?>
$file = "test.txt";
$invoegen = $_GET['bericht'];
$fopen = fopen($file, "a");
fwrite($fopen, $invoegen);
fclose($fopen);
$file = "test.txt";
$fopen = fopen($file, "r");
$data = fgets($fopen, 4096);
fclose($fopen);
$bericht = $_GET['bericht'];
$bericht=strip_tags($bericht);
if($_SERVER['REQUEST_METHOD'] == 'GET'){
echo "<marquee><font color=red face=system>$data</marquee>";
}
else
{
?>
<form name="bericht" action="bericht.php" method="get">
<input type=text name=bericht>
<input type=submit name=verzenden value=bereken>
</form>
</body>
</html>
<html>
<body>
</body>
</html>
tanx mensen ik ga em afmaken
Ga zo door :)