您好,登錄后才能下訂單哦!
這篇文章主要講解了“php中Zend Studio設置與開發實例”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“php中Zend Studio設置與開發實例”吧!
本文實例講述了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>
感謝各位的閱讀,以上就是“php中Zend Studio設置與開發實例”的內容了,經過本文的學習后,相信大家對php中Zend Studio設置與開發實例這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。