第1章 PHP概述

新建文档的模板设置

 

新建文档的模板设置

 

Demo1.php

<?php
	echo "阅谁问君诵,水落清香浮。"
?>

 

orderform.php

<!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>
<title>我的第一个PHP程序</title>
<style>
table {
	background:#ccc;
	width:200px;
	margin:20px auto;
}
table td {
	background:#fff;
}
</style>
</head>
<body>

<form method="post" action="postorder.php">
	<table>
		<tr><td>您的商品</td><td>价格</td><td>数量</td></tr>
		<tr><td>苹果</td><td>2.6元/斤</td><td><input type="text" size="5" name="apple" /></td></tr>
		<tr><td>猪肉</td><td>13.2元/斤</td><td><input type="text" size="5" name="pig" /></td></tr>
		<tr><td>饼干</td><td>21元/盒</td><td><input type="text" size="5" name="biscuit" /></td></tr>
		<tr><td colspan="3" align="center"><input type="submit" value="发送订单" /></td></tr>
	</table>
</form>

</body>
</html>

 

postorder.php

<?php
	$apple=$HTTP_POST_VARS['apple'];
	$pig=$HTTP_POST_VARS['pig'];
	$biscuit=$HTTP_POST_VARS['biscuit'];
	
	$apple=$apple*2.6;
	$pig=$pig*13.2;
	$biscuit=$biscuit*21;
	
	$sum=$apple+$pig+$biscuit;
?>
<!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>
<title>我的第一个PHP程序</title>
<style>
table {
	background:#ccc;
	width:200px;
	margin:20px auto;
}
table td {
	background:#fff;
}
</style>
</head>
<body>

<form method="post" action="postorder.php">
	<table>
		<tr><td>您的商品</td><td>价格</td><td>小记</td></tr>
		<tr><td>苹果</td><td>2.6元/斤</td><td><?echo $apple ?></td></tr>
		<tr><td>猪肉</td><td>13.2元/斤</td><td><?echo $pig ?></td></tr>
		<tr><td>饼干</td><td>21元/盒</td><td><?echo $biscuit ?></td></tr>
		<tr><td colspan="3" align="center">一共要支付<?echo $sum ?>元 [<a href="orderform.php">返回修改</a>]</td></tr>
	</table>
</form>

</body>
</html>

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值