
php
MiemieWan
这个作者很懒,什么都没留下…
展开
-
PHP-验证码
//验证码 yzm(画布宽,画布高,验证码数量,验证码大小,干扰素数量)function yzm($imw,$imh,$num,$fontsize,$internum) { //session session_start(); //创建画布 $im = imagecreatetruecolor($imw, $imh); //准备染料 $gray = imagecoloralloc...原创 2018-02-19 01:02:45 · 255 阅读 · 0 评论 -
PHP-留言板
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>留言板</title></head><body> <h2>留言板</h2> &a原创 2018-02-19 22:25:38 · 446 阅读 · 0 评论 -
PHP-遍历整个文件目录
//遍历整个文件目录 echo "<h2>遍历文件目录</h2>"; function listdir($dirname) { $ds = opendir($dirname); while($file = readdir($ds)) { $path = $dirname . "/" . $file; if($file != '.' &&...原创 2018-02-20 00:34:32 · 251 阅读 · 0 评论 -
PHP-文件上传下载
myindex.php:上传页面<!DOCTYPE html><html><head> <meta charset="utf-8"></head><body> <form method="post" action="files_upload.php" enc原创 2018-02-21 22:46:32 · 422 阅读 · 0 评论 -
PHP-MYSQL数据表格分页
<?php header("content-type:text/html;charset=utf-8"); //连接数据库 $servername = 'localhost'; $username = 'root'; $password = ''; $db = 'mydb'; $conn = new mysqli($servername,$username,$password...原创 2018-02-24 23:05:02 · 914 阅读 · 0 评论