Skip to content

Commit a5dc520

Browse files
committed
init commit
0 parents  commit a5dc520

File tree

1,022 files changed

+177644
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,022 files changed

+177644
-0
lines changed

README.md

Whitespace-only changes.

cal.php

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
$a = $_POST['a'];
3+
$b = $_POST['b'];
4+
$c = $_POST['c'];
5+
$d = $b * $b - 4*$a*$c;
6+
7+
if ($d > 0) {
8+
echo "有两个解";
9+
$jie1 = (-$b + pow($d, 0.5)) / (2*$a);
10+
$jie2 = (-$b - pow($d, 0.5)) / (2*$a);
11+
echo "$jie1,$jie2";
12+
}
13+
if ($d == 0) {
14+
echo "有一个解";
15+
$jie1 = (-$b) / (2*$a);
16+
echo "$jie1";
17+
}
18+
if ($d < 0) {
19+
echo "无解";
20+
}
21+
?>

conSQL.php

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>无标题文档</title>
6+
</head>
7+
8+
<body>
9+
<?php
10+
mysql_connect("root","root");
11+
mysql_query("set names utf8");
12+
mysql_query("user liuyanban");
13+
?>
14+
</body>
15+
</html>

dbdemo/conn.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
$uname = "root";
3+
$host = "127.0.0.1:3306";
4+
$pwd = "root";
5+
6+
$link = mysql_connect($host,$uname,$pwd);
7+
mysql_query("set names `uft8`")
8+
//var_dump($link);
9+
?>

dbdemo/showdb.php

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>无标题文档</title>
6+
</head>
7+
<body>
8+
<?php
9+
require("conn.php");
10+
//显示所有数据库
11+
if($link){
12+
//echo '连接成功';
13+
$res = mysql_query("show databases",$link);
14+
//var_dump($res);
15+
echo "Database<br/>";
16+
while ($row = mysql_fetch_array($res)) {
17+
echo "<a href='table.php?dbName={$row['Database']}' > {$row['Database']} </a> | 结构 | 定义 <br />";
18+
}
19+
mysql_free_result($res);
20+
mysql_close($link);
21+
}else{
22+
echo '连接失败';
23+
}
24+
?>
25+
</body>
26+
</html>

dbdemo/table.php

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<?php
6+
$dbName = $_GET['dbName'];
7+
?>
8+
<title><?php echo ''.$dbName?></title>
9+
</head>
10+
11+
<body>
12+
<?php
13+
require('conn.php');
14+
$sql = "use $dbName";
15+
$res = mysql_query($sql,$link);
16+
if(!$res){
17+
echo "sql失败:".$sql."<br />";
18+
echo "错误代码:".mysql_errno()."<br />";
19+
echo "错误信息:".mysql_error()."<br />";
20+
die();
21+
}
22+
23+
//显示所有表
24+
$sql = "show tables";
25+
$res = mysql_query($sql,$link);
26+
if(!$res){
27+
echo "sql失败:".$sql."<br />";
28+
echo "错误代码:".mysql_errno()."<br />";
29+
echo "错误信息:".mysql_error()."<br />";
30+
die();
31+
}
32+
echo "<table border='1'>";
33+
while ($row = mysql_fetch_assoc($res)) {
34+
echo "<tr>";
35+
echo "<td>";
36+
echo "{$row['Tables_in_'.$dbName]}";
37+
echo "</td>";
38+
echo "</tr>";
39+
}
40+
echo "</table>"
41+
?>
42+
</body>
43+
</html>

demo.php

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?php
2+
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE) {
3+
4+
?>
5+
<h3>True</h3>
6+
<?php
7+
}else{
8+
?>
9+
<h3>False</h3>
10+
<?php
11+
}
12+
?>
13+
14+
<form name="f1" action="do.php" method="post">
15+
<input name="name" />
16+
<input name="age" />
17+
<input type="submit" />
18+
</form>
19+
20+
<?php
21+
$array = array(
22+
"foo" => "bar" ,
23+
"bar" => "foo" );
24+
25+
echo "-------------------"."<br/>";
26+
27+
$array1 = [
28+
'foo' => 'bar',
29+
'bar' => 'foo'
30+
];
31+
32+
var_dump($array1);
33+
?>
34+
<br/>
35+
<?php
36+
var_dump($array);
37+
?>
38+
39+
<?php
40+
$array2 = array(
41+
'foo' => 'bar',
42+
'bar' => 'foo',
43+
100 => -100,
44+
-100 => 100 );
45+
echo "<br/>";
46+
var_dump($array2);
47+
?>
48+
<br/>
49+
<?php
50+
$array3 = array('foo','bar','hello','world');
51+
var_dump($array3);
52+
?>
53+
<br/>
54+
<?php
55+
$arr = array(
56+
'foor' => 'bar',
57+
42 => 24,
58+
"multi" => array(
59+
'dimensional' => array(
60+
'array' => foo
61+
)
62+
));
63+
64+
65+
66+
?>

do.php

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?php echo htmlspecialchars($_POST['name']); ?>,,,
2+
<?php echo (int)$_POST['age']; ?>

doswitch.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
$year = $_POST['year'];
3+
$month = $_POST['month'];
4+
5+
switch ($month) {
6+
case '1':
7+
case '3':
8+
case '5':
9+
case '7':
10+
case '8':
11+
case '10':
12+
case '12':
13+
echo "31天";
14+
break;
15+
case '4':
16+
case '6':
17+
case '9':
18+
case '11':
19+
echo "30天";
20+
break;
21+
case ' 2':
22+
if ($year % 4 == 0 && $year % 100 != 0 || $year % 400 ==0 ) {
23+
echo "29天";
24+
}else{
25+
echo "28天";
26+
}
27+
break;
28+
}
29+
30+
?>

form.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>无标题文档</title>
6+
</head>
7+
8+
<body>
9+
<form action="getForm.php" method="post">
10+
Name:<input type="text" size="3" name="name">
11+
Pwd:<input type="password" name="pwd">
12+
<input type="submit" value="提交">
13+
</form>
14+
----------------------------------------------------------------
15+
<form action="cal.php" method="post">
16+
<input type="text" size="3" name="a">X<sup>2</sup>
17+
+
18+
<input type="text" size="3" name="b">X
19+
+
20+
<input type="text" size="3" name="c">
21+
=
22+
0
23+
<input type="submit" value="计算" />
24+
</form>
25+
</body>
26+
</html>

function1.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
function showCity($str1,$str2="默认2",$str3="默认3"){
3+
echo "$str1,$str2,$str3";
4+
}
5+
6+
showCity("abc","bcd",20);
7+
showCity("456");
8+
?>

function2.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
$str = "abc";
4+
5+
function foo(){
6+
global $str; //
7+
echo "$str";
8+
}
9+
10+
foo();
11+
?>

getForm.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
$name = $_POST['name'];
3+
$pwd = $_POST['pwd'];
4+
5+
echo "$name,$pwd";

hbh.php

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
//案例: 有红、白、黑三种球若干个,其中红、白球共25个,白、黑球共31个,红、黑球共28个,
3+
//求这三种球各多少个?
4+
//请同时计算出使用了多少次循环——找出最少的循环次数
5+
//用于记录循环了多少次(才找出答案)
6+
7+
$count = 0;
8+
9+
for ($hong=1;$hong<=25;$hong++) {
10+
for ($bai=1; $bai <= 25; $bai++) {
11+
for ($hei=1; $hei <= 28 ; $hei++) {
12+
$count ++ ;
13+
if($hong+$bai == 25 && $bai + $hei == 31 && $hong + $hei == 28){
14+
echo "$hong,$bai,$hei";
15+
}
16+
}
17+
}
18+
}
19+
20+
echo "循环$count";
21+
22+
echo "<h3>优化1</h3>";
23+
24+
$count=0;
25+
26+
for ($hong=1;$hong<=25;$hong++) {
27+
for ($bai=1; $bai <= 25; $bai++) {
28+
for ($hei=1; $hei <= 28 ; $hei++) {
29+
$count ++ ;
30+
if($hong+$bai == 25 && $bai + $hei == 31 && $hong + $hei == 28){
31+
echo "$hong,$bai,$hei";
32+
break 3;
33+
}
34+
}
35+
}
36+
}
37+
echo "循环$count";
38+
39+
echo "<h3>优化2</h3>";
40+
$count = 0;
41+
for ($hong=1; $hong <= 25; $hong++) {
42+
$bai = 25 - $hong;
43+
$hei = 28 - $hong;
44+
$count ++ ;
45+
if($bai + $hei == 31){
46+
echo "红球$hong ,白球$bai, 黑球$hei";
47+
break;
48+
}
49+
}
50+
echo "循环$count";
51+
?>

index.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?
2+
$name = 'Lee';
3+
$j = 'Hello';
4+
$str = $j.$name;
5+
echo $str;
6+
7+
$i = 10;
8+
$s1 = "abcdef$i";
9+
$s2 = 'abcdef';
10+
$s3 = <<<ABCD1
11+
你好啊汪汪汪汪$i......
12+
<br />你好你好你好
13+
<br /> 哈哈哈哈哈哈哈哈
14+
<script>
15+
alert("hello");
16+
</script>
17+
ABCD1;
18+
19+
20+
echo $s1;
21+
echo $s2;
22+
echo $s3;

message/conSQL.php

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>无标题文档</title>
6+
</head>
7+
8+
<body>
9+
<?php
10+
mysql_connect("root","root");
11+
mysql_query("set names utf8");
12+
mysql_query("user liuyanban");
13+
?>
14+
</body>
15+
</html>
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
3+
//1:在hosts文件中建立域名ip对应关系:
4+
127.0.0.1 www.liuyanban.com
5+
6+
//2:在apache配置文件中建立新站点:
7+
<VirtualHost *:80>
8+
ServerName www.liuyanban.com
9+
DocumentRoot "E:\.......\guestbook-html"
10+
<Directory "E:\.......\guestbook-html">
11+
Options Indexes
12+
Order deny,allow
13+
allow from all
14+
</Directory>
15+
</VirtualHost>
16+
17+
//3:重启wamp所有服务。

0 commit comments

Comments
 (0)