<?php if(isset($_POST['submit'])){ if(isset($_POST['content'],$_POST['content1'],$_POST['content2'])){ $fh = fopen("file.txt", "a"); flock($fp, LOCK_EX); $str = "Поле 1: ".$_POST['content']."\nПоле 2: ".$_POST['content1']."\nПоле 3: ".$_POST['content2']."\n-------------------\n"; fwrite($fh, $str); flock($fp, LOCK_UN); fclose($fh); echo('Спасибо вам, за что-то там'); } }else{ ?><form method=post> <textarea name=content></textarea><br /> <textarea name=content1></textarea><br /> <textarea name=content2></textarea><br /> <input type=submit name=submit value="Отправить"> </form> <?php }?>
$str = "Поле 1: ".$_POST['content']."\nПоле 2: ".$_POST['content1']."\nПоле 3: ".$_POST['content2']."\n-------------------\n";
$ip = $_SERVER['REMOTE_ADDR']; $str = "IP: ".$ip."\nПоле 1: ".$_POST['content']."\nПоле 2: ".$_POST['content1']."\nПоле 3: ".$_POST['content2']."\n-------------------\n";
$dir="folder/"; $i=0; if ($handle = opendir($dir)) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { echo "<img src='".$dir,$file."'>"; $i++; if ($i >= 4) {echo "<br>"; $i=0;} } } closedir($handle); }
$p=(int)$_GET[p]; $per=50; $i=0; $n=0; $dir="folder/"; if ($handle = opendir($dir)) { while (false !== ($file = readdir($handle))) if ($file != "." && $file != "..") { $n++; if($n>$p*$per && $n<=($p+1)*$per) { echo "<img src='".$dir.$file."'>"; $i++; if($i >= 4) {echo "<br>"; $i=0;} } } closedir($handle); } $pages=ceil($n/$per); for($i=0;$i<$pages;$i++) if($i==$p) echo "<b>".($i+1)."</b> "; else echo "<a href=?p=$i>".($i+1)."</a> ";