Chinaunix首页 | 论坛 | 博客
  • 博客访问: 363095
  • 博文数量: 284
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1707
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-14 16:38
文章分类

全部博文(284)

文章存档

2015年(6)

2014年(278)

我的朋友

分类: JavaScript

2014-08-19 17:33:33

利用PHP和Html + javascript 编写一个简单的网页计算器程序,可以根据这种有趣的开发构架出更加有趣的网页。
1. [代码]PHP计算器    


caculator

 







































































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]";
        }
 
}
?>


阅读(1256) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~