PHP編寫網頁BS結構計算機

來源:互聯網
上載者:User

標籤:http   java   os   檔案   io   for   cti   html   

利用PHP和Html + javascript 編寫一個簡單的網頁計算機程式,可以根據這種有趣的開發構架出更加有趣的網頁。 
?1. [代碼]PHP計算機     

<html>
<head>
<title>caculator</title>
</head>
 
<body>
<form name="myform" method="POST">
<tr>
<script language = "javascript">
</script>
<td><input type="text" name="text1"/></td><br/>
<td><input type="text" name="sign" value="+"/<?$_GET[‘add‘]?></td><br/>
<td><input type="text" name="text2"/></td><br/>
<td><input type="text" name="text3"/></td><br/>
<td><input type="button" name="count" value="="/></td><br/>
<td><input type="text" name="equals"/></td><br/>
<td><input type="reset" name="reset"/></td><br/>
</tr>
<tr>
<script language = "javascript">
function count(text3){
    var text1 = parseint(document.form.text1.value);
    var text2 = parseint(document.form.text2.value);
}
switch(text3){
    case 0:
        document.form.text3.value = text1 + text2;
        break;
        case 1:
            document.form.text3.value = text1 - text2;
            break;
        case 2:
            document.form.text3.value = text1 * text2;
            break;
        case 3:
            document.form.text3.value = text1 / text2;
            break;
            default(text3 = text1/text2!=0){
                document.form.text3.value = text1/text2;
            }
}
</script>
<td><input type="text" name="text1"/></td><br/>
<td><input type="text" name="sign" value="-"/><?$_GET[‘sub‘]?></td><br/>
<td><input type="text" name="text2"/></td><br/>
<td><input type="text" name="text3"/></td><br/>
<td><input type="button" name="count" value="="/></td><br/>
<td><input type="text" name="equals"/></td><br/>
<td><input type="reset" name="reset"/></td><br/>
</tr>源檔案
<tr>http://www.huiyi8.com/psd/?
<script language = "javascript">
</script>
<td><input type="text" name="text1"/></td><br/>
<td><input type="text" name="sign" value="*"/><?$_GET[‘mul‘]?></td><br/>
<td><input type="text" name="text2"/></td><br/>
<td><input type="text" name="text3"/></td><br/>
<td><input type="button" name="count" value="="/></td><br/>
<td><input type="text" name="equals"/></td><br/>
<td><input type="reset" name="reset"/></td><br/>
</tr>
<tr>
<script language = "javascript">
</script>
<td><input type="text" name="text1"/></td><br/>
<td><input type="text" name="sign" value="/"/><?$_GET[‘div‘]?></td><br/>
<td><input type="text" name="text2"/></td><br/>
<td><input type="text" name="text3"/></td><br/>
<td><input type="button" name="count" value="="/></td><br/>
<td><input type="text" name="equals"/></td><br/>
<td><input type="reset" name="reset"/></td><br/>
</tr>
</form>
<?php
class calculate{
    pbulic $text1;
    public $text2;
    public $text3;
    function add($text1,$text2){
        $text3 = $text1 + $text2;
        $this->text1=$text1;
        $this->text2=$text2;
        echo "$_GET[add]";
    }
        function sub($text1,$text2){
        $text3 = $text1 - $text2;
        $this->text1=$text1;
        $this->text2=$text2;
        echo "$_GET[sub]";
        }
            function mul($text1,$text2){
        $text3 = $text1 * $text2;
        $this->text1=$text1;
        $this->text2=$text2;
        echo "$_GET[mul]";
        }
        function div($text1,$text2){
        $text3 = $text1 / $text2;
        $this->text1=$text1;
        $this->text2=$text2;
        echo "$_GET[div]";
        }
        function getresult(){
        echo $text3 = ($text1 + $text2). ".$_GET[add]";
        echo $text3 = ($text1 + $text2). ".$_GET[sub]";
        echo $text3 = ($text1 + $text2). ".$_GET[mul]";
        echo $text3 = ($text1 + $text2). ".$_GET[div]";
        }
 
}
?>
</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.