Simple addition, subtraction, multiplication, division, and division using php _ PHP Tutorial

Source: Internet
Author: User
Simple addition, subtraction, multiplication, division calculator using php. Use php to implement addition, subtraction, multiplication, division, and calculator. The code is simple! Copy the code as follows :? Phpheader (content-type: texthtml; charsetutf-8); session_start ();?! DOCTYPEhtmlPUBLIC-use php to implement addition, subtraction, multiplication, division, and calculator. The code is simple!

The code is as follows:


Header ("content-type: text/html; charset = utf-8 ");
Session_start ();
?>




Simple computer





$ Num1 = $ _ POST ['num1'];
$ Num2 = $ _ POST ['num2'];
$ Scheme = $ _ POST ['signature'];
$ Rs = 0;
Switch ($ scheme ){
Case "+ ":
$ Rs = $ num1 + $ num2;
Break;
Case "-":
$ Rs = $ num1-$ num2;
Break;
Case "*":
$ Rs = $ num1 * $ num2;
Break;
Case "/":
$ Rs = $ num1/$ num2;
Break;
Default: echo "Your input is incorrect ";
}
$ _ SESSION ['Rs '] = $ rs;
Echo: '. $ _ SESSION ['Rs'];
?>

Bytes. The code is simple! The code is as follows :? Php header ("content-type: text/html; charset = utf-8"); session_start ();? ! DOCTYPE html PUBLIC "-/...

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.