doutan8506 2015-07-12 10:43
浏览 116
已采纳

制作PHP计算器存储和显示历史记录

I am new to PHP and I am trying to create a simple calculator that also displays the history (past calculations) in a div on the page.

You input something like "4+" in the first field and "3" in the second, and it displays "4+3=7" in the div called "results". However, I want to display the whole history of results there, so when I perform a new calculation, both calculations/results will be displayed the results div. What's the best way of doing this in PHP? Would DOMNode::appendChild be an option?

Here is my code this far:

<div id="form">
    <form action="" method="post">
        <input type ="text" name="firstNumber">
        <input type ="text" name="secondNumber">
        <input type ="submit" style="display:none">
    </form>
</div>

Result:

<?php 

    $number1 = $_POST["firstNumber"];
    $number2 = (int)$_POST["secondNumber"];

    @$operator = substr($number1, -1);


switch($operator){
    case '+':
        $result = (int)$number1+$number2;
        echo $result;
        break;
     case '-':
        $result = (int)$number1-$number2;
        echo $result;
        break;
    case '*':
        $result = (int)$number1*$number2;
        echo $result;
        break;
    case '/':
        $result = (int)$number1/$number2;
        echo $result;
        break;
}

?>


<div id="results">
    <?php echo substr($number1,0, -1);
        echo $operator; 
        echo $number2; ?>
 <br>=
    <?php echo $result; ?>
</div>

Thank you for helping out!

  • 写回答

1条回答 默认 最新

  • drkxgs9358 2015-07-12 10:49
    关注

    To store the history server-side, you'll either need a database, like MySQL, a caching server like Memcache or Redis, or you can just store the results in the $_SESSION. Here is a good resource on how to store data in the session. If you store it in $_SESSION, your history will be lost when the user clears their cookies (or logs out, if you implement user accounts).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥15 Python3.5 相关代码写作
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗