
php
NGiveU_zh
沉浸在自我感动中无法自拔
展开
-
php学习日常3-21 关于表示行与列
我们可以知道,用<tr>换行用<td>换列 所以实现表格需要使用两个for循环即可<table border="1" align="center" width="800"> <caption><h1>学生成绩表</h1></caption> <?php for ($i = 1; $i <= 10; $i++) {原创 2016-03-22 18:14:02 · 594 阅读 · 0 评论 -
php日常3-21 设计一个九九乘法表
和刚才表格不同的是,对每行的列数有了更多的限制 即第一行一列,第二行两列以此类推 所以<table border="1" align="center" width="800"> <caption><h1>九九乘法表</h1></caption> <?php for ($i = 1; $i < 10; $i++) {原创 2016-03-22 18:27:54 · 621 阅读 · 0 评论 -
关于轮播
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Ty原创 2016-12-02 18:54:55 · 436 阅读 · 0 评论 -
在网页制作中实现上传功能
<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title></title> </head> <body> <?php include_once 'conn.php原创 2016-12-06 16:33:03 · 2676 阅读 · 1 评论 -
文章标题
<?phpsession_start();$type = 4;?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"原创 2016-12-07 15:54:44 · 488 阅读 · 0 评论