我们以一个提交订单和显示订单信息的例子为学习php的开始。这个例子包含两个文件。一个提交订单的html文件:orderform.html,一个显示订单信息的php文件:processorder.php。我将这两个文件放在test_1文件夹下,将test_1文件夹放在htdocs目录下。
文件的组织形式如下图所示,使用xampps安装的集成环境。
提交订单的html文件orderform.html如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<form action= "processorder.php" method= "post" > <table> <tr bgcolor= "#cccccc" > <td width= "150" >item</td> <td width= "15" >quantity</td> </tr> <tr> <td>tires</td> <td align= "center" ><input type= "text" name= "tireqty" size= "3" maxlength= "3" /></td> </tr> <tr> <td>oil</td> <td align= "center" ><input type= "text" name= "oilqty" size= "3" maxlength= "3" /></td> </tr> <tr> <td>spark plugs</td> <td align= "center" ><input type= "text" name= "sparkqty" size= "3" maxlength= "3" /></td> </tr> <tr> <td colspan= "2" align= "center" ><input type= "submit" value= "submit order" /></td> </tr> </table> </form> |
显示订单信息的php文件processorder.php如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?php // create short variable names, also can use '$_request['name']' $tireqty = $_post [ 'tireqty' ]; $oilqty = $_post [ 'oilqty' ]; $sparkqty = $_post [ 'sparkqty' ]; ?> <!doctype html> <html> <head> <title>bob 's auto parts - order results</title> </head> <body> <h1>bob 's auto parts</h1> <h2>order results</h2> <?php echo "<p>order processed at " ; echo date ( 'h:i, js f y' ). "</p>" ; echo "<p>your order is as follows: </p>" ; echo "$tireqty tires<br />" ; echo $oilqty . ' bottles of oil<br />' ; echo $sparkqty . " spark plugs<br />" ?> ---------------------------------------------------<br /> <?php $testheredoc = <<< eof line 1 line 2 line 3 eof; echo "$testheredoc" . "<br />" ; ?> ---------------------------------------------------<br /> <?php echo "about comment:" ; //here is a comment. #here is a comment too. /* here is multi line comment. here is multi line comment. */ ?> </body> </html> |
在浏览器中输入http://localhost/test_1/orderform.html,将显示填写订单信息页面,如下所示:
填入数字,然后点击“submit order”按钮提交内容。则页面将显示processorder.php经过php解析器解析之后生成的html页面,如下所示:
在这个例子中,我们可以学习到以下几点内容:
1. 在html中嵌入php代码的语法格式为: <?php 代码内容 ?> ,需要注意的是开始符号“<?php”中间不能有空格。
2. post方法提交的表单内容可以通过php的“$_post[]”数组按照name获取,也可以通过“$_request[]”数组获取。这些数组为超级全局变量。
3. 字符串可以用单引号也可以使用双引号引起来, 也可以用反单引号引起来(反单引号在键盘最左上角,与~是一个键)。
三种引号作用不同:
- 单引号内的字符串将被当作纯文本原样输出;
- 双引号中如果有变量,则会替换成变量的值然后输出文本;
- 反单引号被叫做执行符,php解析器会先执行反单引号中的内容,将执行之后的结果返回。
4. 字符串可以使用点号“.”连接在一起。在php中点号是唯一的字符串连接符,相当于java中的“+”。
5. php中有三种注释方式:分别为类java的单行注释“//”;类shell的单行注释“#”;类java的多行注释“/**/”。
6.php中所有的变量使用时都是以“$”打头的, 并且变量使用时不需要提前声明。
而且变量的类型也可以随时改变,这取决于赋值给变量的值的类型。php变量的类型是在每一次赋值时确定和改变的。
第一个php例子就说到这里,希望大家继续关注小编为大家整理的文章。