Parašė Mantyszz· 2009 Spa. 3 20:10:23
#1
Man reikia tokio scripto kad parašius į kokį nors laukeli ir paspaudus mygtuką tas tekstas išsisaugotų kokiam pvz .txt faile. Ir kitame scripte nuskaitytu tą info iš .txt failo ir jį atvaizduotų.
Parašė Peacemaker· 2009 Spa. 3 20:10:19
#2
Kodo dalis -
<?PHP
$filename = "output.txt"; #Must CHMOD to 666
$text = $_POST['theformfieldname']; # Form must use POST. if it uses GET, use the line below:
#$text = $_GET['theformfieldname']; #POST is the preferred method
$fp = fopen ($filename, "w"); # w = write to the file only, create file if it does not exist, discard existing contents
if ($fp) {
fwrite ($fp, $text);
fclose ($fp);
echo ("File written");
}
else {
echo ("File was not written");
}
?>
Kaip padaryti viską iš eilės, yra rašoma čia:
http://www.tizag.com/phpT/forms.php
Redagavo Peacemaker· 2009 Spa. 3 20:10:22
Parašė Mantyszz· 2009 Spa. 3 20:10:50
#3
Ten nei biški nesupratau. Ten nei nurodyta tokia funkcija kaip įrašymas į failą ir t.t.
Parašė Peacemaker· 2009 Spa. 3 20:10:04
#4
Susikuriate failą output.txt, į jį įrašomi duomenys iš 'theformfieldname'.