php入門教程之Zend Studio設定與開發執行個體

來源:互聯網
上載者:User
本文執行個體講述了php入門教程之Zend Studio設定與開發方法。分享給大家供大家參考,具體如下:

建立文檔的模板設定

建立文檔的模板設定

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>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.