Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Skriptas .txt
Parašė HakerNaher· 2009 Lap. 23 22:11:31
#1
Sveiki, ilgai ieskojau skripta kuris duomenius iraso i .txt faila
Pvz. yra forma:
Vardas
Pavarde
Tel
Viskas irase spaudi SIUST ir viskas isiraso i .txt faila
Zinau kad nelabai sunku, bet kazkodel pas mane labai iseina o inete nieko gero negaliu surast
Buciau dekingas jeigu kas sukurs
Aciu
Jei ka cia ne ant fusiono o tesiog skriptas reikalingas, kad forma butu sukurta per
html o irasymas
php
Redagavo HakerNaher· 2009 Lap. 23 22:11:58
Parašė HakerNaher· 2009 Lap. 23 22:11:40
#4
Cia man tamsu ... :(
Man notePad nereikalingas jei ka
Parašė iMantux· 2009 Lap. 23 22:11:47
#5
Tai palei notepad pasidaryk, kokios problemos.
Parašė HakerNaher· 2009 Lap. 23 22:11:39
#6
Padaryk padaryk, paprasiau pagalbos kad kas nors padarytum nes as zalias
Parašė blist· 2009 Lap. 23 22:11:13
#7
va Jėzau... tu apsimeti durneliu ar tikrai toks esi? Tą kur daviau tik reikia pakopint to text`o inputus, kad būtų jų daugiau ir prie rezultato rašytų iš kokio čia input`o rodo..
Parašė HakerNaher· 2009 Lap. 23 22:11:06
#8
mediaL parašė:
va Jėzau... tu apsimeti durneliu ar tikrai toks esi? Tą kur daviau tik reikia pakopint to text`o inputus, kad būtų jų daugiau ir prie rezultato rašytų iš kokio čia input`o rodo..
O prie ko cia durnelis? Jeigu as nesuprantu, pirma kart gyvenime beveik sukurt kazka noriu
Parašė 7even· 2009 Lap. 23 22:11:26
#9
Susikurk failą "Aš noobas.php" ir ten įvesk šitą tekstą
<?php
$filename = 'tekstas.txt';
$somecontent = "Add this to the file\n";
// Let's make sure the file exists and is writable first.
if (is_writable($filename)) {
// In our example we're opening $filename in append mode.
// The file pointer is at the bottom of the file hence
// that's where $somecontent will go when we fwrite() it.
if (!$handle = fopen($filename, 'a')) {
echo "Cannot open file ($filename)";
exit;
}
// Write $somecontent to our opened file.
if (fwrite($handle, $somecontent) === FALSE) {
echo "Cannot write to file ($filename)";
exit;
}
echo "Success, wrote ($somecontent) to file ($filename)";
fclose($handle);
} else {
echo "The file $filename is not writable";
}
?>
tada susikurk failą "tekstas.txt" ir įmesk į
ftp.
Parašė Niger· 2009 Lap. 23 23:11:39
#10
dar tekstas.txt reikia suchmodint kaip imeti i ftp ;)
Parašė RmxLT· 2009 Lap. 23 23:11:26
#11
7even parašė:
Susikurk failą "Aš noobas.php"
Butina taip stumt ant zmogaus?
Parašė HakerNaher· 2009 Lap. 23 23:11:53
#12
Parse error: syntax error, unexpected '{' in /home/apd/public_html/test/action.php on line 11
Redagavo HakerNaher· 2009 Lap. 23 23:11:35
Parašė blist· 2009 Lap. 23 23:11:36
#13
7even išjunk smiles, nes jam neveikia.
Parašė HakerNaher· 2009 Lap. 23 23:11:26
#14
tai kaip ta eilute turi but atrodyra be smile?
Parašė iMantux· 2009 Lap. 23 23:11:00
#15
if (!$handle = fopen($filename, 'a')) {
rodos.
Redagavo iMantux· 2009 Lap. 23 23:11:11
Parašė RmxLT· 2009 Lap. 23 23:11:00
#16
<?php
$filename = 'tekstas.txt';
$somecontent = "Add this to the file\n";
// Let's make sure the file exists and is writable first.
if (is_writable($filename)) {
// In our example we're opening $filename in append mode.
// The file pointer is at the bottom of the file hence
// that's where $somecontent will go when we fwrite() it.
if (!$handle = fopen($filename, 'a';)) {
echo "Cannot open file ($filename)";
exit;
}
// Write $somecontent to our opened file.
if (fwrite($handle, $somecontent) === FALSE) {
echo "Cannot write to file ($filename)";
exit;
}
echo "Success, wrote ($somecontent) to file ($filename)";
fclose($handle);
} else {
echo "The file $filename is not writable";
}
?>
Redagavo RmxLT· 2009 Lap. 23 23:11:38
Parašė HakerNaher· 2009 Lap. 23 23:11:05
#17
mdaa tik nesupratau ka cia paraset:))
O kur pati forma tada?Kad zmogus galetum pats irasyt?
Parašė ArturasS· 2009 Lap. 24 00:11:34
#18
<html>
<head>
<title>FORMA</title>
</head>
<body>
<?php
$puslapis = $_GET['puslapis'];
if ($puslapis == ""){
<form method='post' action'?puslapis=2'>
<input name='vardas' maxlength='15'>
<input name='pavarde' maxlength='20'>
<input name='tel' maxlength='10'>
<input type='submit' value='SIUST'>
</form>
}
if ($puslapis == "2"){
$vardas = $_POST['vardas'];
$pavarde = $_POST['pavarde'];
$tel = $_POST['tel'];
if ($vardas == "" || $pavarde == "" || $tel == ""){
echo "Ivesk ta, ta arba ta";
} else {
echo "Isiusta sekmingai";
$jopapa = fopen("info.txt", "w+");
fwrite($jopapa, "$vardas|$pavarde|$tel");
fclose($jopapa);
chmod("info.txt", 0777);
}
}
?>
</body>
</html>
Special for u ;)
Redagavo ArturasS· 2009 Lap. 24 00:11:36
Parašė HakerNaher· 2009 Lap. 24 00:11:00
#19
Parse error: syntax error, unexpected '<' in /home/apd/public_html/test/index.php on line 13
kodel nesigauna?
Redagavo HakerNaher· 2009 Lap. 24 01:11:33
Parašė iMantux· 2009 Lap. 24 00:11:33
#20
kam tie bereikalingi get'ai?
Parašė HakerNaher· 2009 Lap. 24 11:11:30
#21
Padiekit kas nors, kodel error'a meta
Parašė ArturasS· 2009 Lap. 24 14:11:14
#22
Tai parašyk erroras koks, imsim mes tau ir pasakysim nežinodami nieko.
Parašė ArturasS· 2009 Lap. 24 14:11:15
#23
<html>
<head>
<title>FORMA</title>
</head>
<body>
<?php
$puslapis = $_GET['puslapis'];
if ($puslapis == ""){
echo"
<form method='post' action'?puslapis=2'>
<input name='vardas' maxlength='15'>
<input name='pavarde' maxlength='20'>
<input name='tel' maxlength='10'>
<input type='submit' value='SIUST'>
</form>
";
}
if ($puslapis == "2"){
$vardas = $_POST['vardas'];
$pavarde = $_POST['pavarde'];
$tel = $_POST['tel'];
if ($vardas == "" || $pavarde == "" || $tel == ""){
echo "Ivesk ta, ta arba ta";
} else {
echo "Isiusta sekmingai";
$jopapa = fopen("info.txt", "w+");
fwrite($jopapa, "$vardas|$pavarde|$tel");
fclose($jopapa);
chmod("info.txt", 0777);
}
}
?>
</body>
</html>
Sorry buvau pamiršęs echo sumest, imk :)
Redagavo ArturasS· 2009 Lap. 24 14:11:27