Jump to content

PHP Calculator

- - - - -

  • Please log in to reply
No replies to this topic

#1
Bioshox

Bioshox

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 207 posts
So here's a short video on how to create a PHP calculator!



Source:

<html>
<head>   
<title>PHPCalc</title></head>
<body>
<?php
// Numbers to add
$num1 = 4;$num2 = 4;

// Answer Variable
$answer = $num1 * $num2;

// Output
echo $num1 ." * ". $num2 ." = ". $answer;
?>


Jacob Clark 2011 - Jacob Clark - Fusion Strike

Edited by Bioshox, 01 November 2011 - 11:27 PM.





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users