<?php$allowed_types=array('jpg','jpeg','gif','png');$dir ="img_pic/";$files1 = scandir($dir);foreach($files1 as $key=>$value){ if($key>1){ $file_parts = explode('.',$value); $ext = strtolower(array_pop($file_parts)); if(in_array($ext,$allowed_types)){ echo "<img style='width:100px;' src='".$dir.$value."'/> "; } }}?>
<?php$allowed_types=array('jpg','jpeg','gif','png');$dir ="img_pic/";$files1 = scandir($dir);$total=0; // นับจำนวนรูปทั้งหมด$pic_path=array();foreach($files1 as $key=>$value){ if($key>1){ $file_parts = explode('.',$value); $ext = strtolower(array_pop($file_parts)); if(in_array($ext,$allowed_types)){ $pic_path[>=$dir.$value; $total++; } }}// จำนวนรายการที่ต้องการแสดง แต่ละหน้า$perPage = 2;// คำนวณจำนวนหน้าทั้งหมด$num_naviPage=ceil($total/$perPage);// กำหนดจุดเริ่มต้น และสิ้นสุดของรายการแต่ละหน้าที่จะแสดงif(!isset($_GET<'page'>)){ $s_key=0; $e_key=$perPage; $_GET<'page'>=1;}else{ $s_key=($_GET<'page'>*$perPage)-$perPage; $e_key=$perPage*$_GET<'page'>; $e_key=($e_key>$total)?$total:$e_key;}for($i=1;$i<=$num_naviPage;$i++){ echo " || <a href=\"?page=".$i."\">Page $i</a>"; }echo "<hr>";// แสดงรายการfor($indexPicture=$s_key;$indexPicture<$e_key;$indexPicture++){ echo "<img style='width:100px;' src='".$pic_path<$indexPicture>."'/> "; }// แสดงหน้าปัจจุบันecho "<br>Page:".$_GET<'page'>;?>
โปรดรอ
cymiz.com insurance