不需要php呀
汪清網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)公司于2013年創(chuàng)立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。
這樣寫的行不
!DOCTYPE?html
html
head
title簡單計算器/title
/head
body
input?type="text"?name="first"?id="first"
select?id="operate"
option+/option
option-/option
option*/option
option//option
/select
input?type="text"?name="second"?id="second"=
input?type="text"?name="result"?id="result"
input?type="button"?name="運算"?value="運算"?onClick="operate()"
script?type="text/javascript"
function?operate()?{
var?first?=?parseInt(document.getElementById("first").value);
var?second?=?parseInt(document.getElementById("second").value);
var?result?=?document.getElementById("result");
var?opt?=?document.getElementById("operate");
if?(0?==?opt.selectedIndex)?{
resultvalue?=?first?+?second;
}else?if(1?==?opt.selectedIndex){
resultvalue?=?first?-?second;
}else?if?(2?==?opt.selectedIndex)?{
resultvalue?=?first?*?second;
}else?if?(3?==?opt.selectedIndex)?{
if?(second?==?0)?{
alert("除數(shù)不能為0");
}
resultvalue?=?first?/?second;
}
result.setAttribute("value",resultvalue);
}
/script
/body
/html
不用調(diào)用文件
后臺直接改成
?
extract($_POST);
if(isset($select))
{
switch($select)
{
case '+':
echo $val1+$val2;
break;
case '-':
echo $val1-$val2;
break;
case '*':
echo $val1*$val2;
break;
case '/':
echo $val1/$val2;
break;
}
}
?
使用函數(shù) eval 如下:
$b = 2;
$c = "+";
$d = 3;
eval("\$a=$b$c$d;");
$pageSize = 20;//定義每頁顯示條數(shù)
$page = isset($_GET['page']) ? intval($_GET['page']) : 1;//取得當(dāng)前頁數(shù)
if ($page 1) {
$page = 1;
}
$tsql="select count(*) as count from biao order by id desc";
$result = mysql_query($tsql);
$record = mysql_fetch_array($result);
$count = $record['count'];//這里總記錄數(shù)
//總頁數(shù)
$pageCount = ceil($count / $pageSize);
/* 再次檢查page */
if ($page $pageCount) {
$page = $pageCount;
}
//計算開始條數(shù)
$start = ($page - 1) * $pageSize;
//取得分頁數(shù)據(jù)
$sql="select * from biao order by id desc limit $start, $pageSize";
下面代碼沒什么了,和你的一樣了
?php
$x = 50;
$y = 20;
$z = 10;
// 顯示結(jié)果
echo $z * ($x - $y) / 100;
?
這是按照你的例子寫的小程序,你把它存成一個php文件,然后從瀏覽器打開它,就能看到結(jié)果。
如果你需要從數(shù)據(jù)庫里讀取x、y、z的值的代碼,那你要先提供數(shù)據(jù)庫的格式。
php有8種數(shù)據(jù)類型:
四種標(biāo)量類型:
boolean (布爾型)
integer (整型)
float (浮點型, 也稱作 double)
string (字符串)
兩種復(fù)合類型:
array (數(shù)組)
object (對象)
最后是兩種特殊類型:
resource?。ㄙY源)
NULL (NULL)
運算符有:加減乘除,取模