利用表單的方式,設計出可輸入2個營業員姓名,個別三個月的業績。
統計出每個營業員的總營業額,並印出何者最高
表單
<form name="form01" action="8-55.PHP" method="get" target="1_blank">
<p>
請輸入營業員『ROBER』 的3個月月績(單位:千元)
</p>
<table width="200" border="1">
<tr>
<td align="center">一月月績</td>
<td align="center">二月月績</td>
<td align="center">三月月績</td>
</tr>
<tr>
<td><input type="text" name="ROBERmonth01" ></td>
<td><input type="text" name="ROBERmonth02" ></td>
<td><input type="text" name="ROBERmonth03" ></td>
</tr>
</table>
<p><br>
請輸入營業員『JOHN』 的3個月月績(單位:千元)
</p>
<table width="200" border="1">
<tr>
<td align="center">一月月績</td>
<td align="center">二月月績</td>
<td align="center">三月月績</td>
</tr>
<tr>
<td><input type="text" name="JOHNmonth01" ></td>
<td><input type="text" name="JOHNmonth02" ></td>
<td><input type="text" name="JOHNmonth03" ></td>
</tr>
</table>
<br>
<table width="522" border="0">
<tr>
<th width="490" align="center" scope="col"><input style="text-align:center" type="submit" name="送出" value="送出"> <input name="" type="reset" value="重設"></th>
</tr>
</table>
</form>
陣列列出
<?php
$subjects = array("一月", "二月", "三月");
$ROBER["一月"] = $_GET["ROBERmonth01"];
$ROBER["二月"] = $_GET["ROBERmonth02"];
$ROBER["三月"] = $_GET["ROBERmonth03"];
$JOHN["一月"] = $_GET["JOHNmonth01"];
$JOHN["二月"] = $_GET["JOHNmonth02"];
$JOHN["三月"] = $_GET["JOHNmonth03"];
$ROBER01=$ROBER["一月"]+$ROBER["二月"]+$ROBER["三月"];
$JOHN01=$JOHN["一月"]+$JOHN["二月"]+$JOHN["三月"];
echo "<h2>ROBER 的單月月績:</h2>";
foreach ($subjects as $s) {
echo "<p>".$s.":".$ROBER[$s]."千元</p>";
}
echo "<h2>JOHN 的單月月績:</h2>";
foreach ($subjects as $s) {
echo "<p>".$s.":".$JOHN[$s]."千元</p>";
}
echo "<p>ROBER1~3月總月績:".$ROBER01."千元</p>";
echo "<p>JOHN1~3月總月績:".$JOHN01."千元</p>";
if ($ROBER01<$JOHN01) {
echo "<h2>JOHN總月績".$JOHN01."千元,超優秀!<h2>"; echo "<h2>ROBER要加油!<h2>";
} else {
echo "<h2>ROBER總月績".$ROBER01."千元,超優秀!<h2>"; echo "<h2>JOHN要加油!<h2>";
}
?>
~歡迎轉載,但請註明來源網站名稱和網址,文章若有侵權,請來信告知,我們會盡快處理~
統計出每個營業員的總營業額,並印出何者最高
表單
<form name="form01" action="8-55.PHP" method="get" target="1_blank">
<p>
請輸入營業員『ROBER』 的3個月月績(單位:千元)
</p>
<table width="200" border="1">
<tr>
<td align="center">一月月績</td>
<td align="center">二月月績</td>
<td align="center">三月月績</td>
</tr>
<tr>
<td><input type="text" name="ROBERmonth01" ></td>
<td><input type="text" name="ROBERmonth02" ></td>
<td><input type="text" name="ROBERmonth03" ></td>
</tr>
</table>
<p><br>
請輸入營業員『JOHN』 的3個月月績(單位:千元)
</p>
<table width="200" border="1">
<tr>
<td align="center">一月月績</td>
<td align="center">二月月績</td>
<td align="center">三月月績</td>
</tr>
<tr>
<td><input type="text" name="JOHNmonth01" ></td>
<td><input type="text" name="JOHNmonth02" ></td>
<td><input type="text" name="JOHNmonth03" ></td>
</tr>
</table>
<br>
<table width="522" border="0">
<tr>
<th width="490" align="center" scope="col"><input style="text-align:center" type="submit" name="送出" value="送出"> <input name="" type="reset" value="重設"></th>
</tr>
</table>
</form>
陣列列出
<?php
$subjects = array("一月", "二月", "三月");
$ROBER["一月"] = $_GET["ROBERmonth01"];
$ROBER["二月"] = $_GET["ROBERmonth02"];
$ROBER["三月"] = $_GET["ROBERmonth03"];
$JOHN["一月"] = $_GET["JOHNmonth01"];
$JOHN["二月"] = $_GET["JOHNmonth02"];
$JOHN["三月"] = $_GET["JOHNmonth03"];
$ROBER01=$ROBER["一月"]+$ROBER["二月"]+$ROBER["三月"];
$JOHN01=$JOHN["一月"]+$JOHN["二月"]+$JOHN["三月"];
echo "<h2>ROBER 的單月月績:</h2>";
foreach ($subjects as $s) {
echo "<p>".$s.":".$ROBER[$s]."千元</p>";
}
echo "<h2>JOHN 的單月月績:</h2>";
foreach ($subjects as $s) {
echo "<p>".$s.":".$JOHN[$s]."千元</p>";
}
echo "<p>ROBER1~3月總月績:".$ROBER01."千元</p>";
echo "<p>JOHN1~3月總月績:".$JOHN01."千元</p>";
if ($ROBER01<$JOHN01) {
echo "<h2>JOHN總月績".$JOHN01."千元,超優秀!<h2>"; echo "<h2>ROBER要加油!<h2>";
} else {
echo "<h2>ROBER總月績".$ROBER01."千元,超優秀!<h2>"; echo "<h2>JOHN要加油!<h2>";
}
?>
響應式網頁架站只要6,888元起|[RWD]響應式網站,自適應網頁,讓SEO搜尋引擎最佳化你的網站
"你是獵人還是獵物?"
0 comments :
張貼留言
1.猛甲茶道,歡迎多留言,可以幫自己網站打廣告~
2.需要 猛甲茶道 回覆,請勿使用匿名留言[可使用名稱/網址,名稱填自己名字,若無網址,請填E-mail]。
3.匿名攻訐、不相干之廣告適用於無條件刪去法,望請海涵:)
4.您可以使用一些 HTML 標記,如:
<b>粗體</b>, <i>斜體</i>, <a href='網址'>描述文字</a>