大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
你好,要制作相册,你可以使用jquery实现.
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:申请域名、网页空间、营销软件、网站建设、怀来网站维护、网站推广。
php是后台语言,前台的展现需要用到html+css+javascript.
function listFiles($dir, $ext = '{*.jpg,*.JPG,*.gif,*.GIF,*.PNG,*.png}') {
$alldirs = array();
$dirs = glob($dir . '/'. $ext, GLOB_BRACE);//
if (count($dirs) 0) {
foreach ($dirs as $d) {
$alldirs[] = $d;
}
}
return $alldirs;
}
function showImgFiles($imgFiles, $pageSize, $image = 'images') {
global $page;
$tempArr = array_chunk($imgFiles, $pageSize);
$k = $page - 1;
echo 'ul style="position: relative;left: -10px;list-style-type: none;width: 780px;overflow: hidden;"';
foreach ($tempArr[$k] as $file) {
echo 'li style="float: left;margin-right: 20px;margin-top: 20px;"a href=""img src="'.dirname($_SERVER['SCRIPT_NAME']) . DIRECTORY_SEPARATOR . $image . DIRECTORY_SEPARATOR . basename($file) .'" style="width: 100px;height: 100px;border: 1px solid #ccc" //a/li';
}
echo '/ul';
echo 'div style="margin: auto;width: 200px; height: 50px;"';
for ($i = 1; $i count($tempArr); ++$i) {
echo 'a href="?page='.$i.'"';
echo $i;
echo '/a';
}
echo '/div';
}
//$scriptName = $_SERVER['SCRIPT_NAME'];
$path = dirname(__FILE__).DIRECTORY_SEPARATOR.'images';//image file
$imgFiles = listFiles($path);//get all of the img files
$pageSize = 2;//每页显示数目
$totalAmt = count($imgFiles);//总共数目
$page = isset($_REQUEST['page']) ? intval($_REQUEST['page']) : 1;
showImgFiles($imgFiles, $pageSize);
将表单内容以post方式传递到服务器上找个地方,用时间戳来命名文件,以.txt文件存储,定义自己需要的格式,就行啦,要查看数据的时候,直接遍历读取文件就可以查看了