Skip to content

Instantly share code, notes, and snippets.

@masamasa6210
masamasa6210 / calc.php
Created November 28, 2016 06:28
電卓
<html>
<head>
<title>calc.php</title>
</head>
<body>
<?php
//値を習得
if (isset($_POST["selOpe"])){
$a = $_POST['txtA'];
$b = $_POST['txtB'];
<html>
<head>
<title>calc.php</title>
</head>
<body>
<?php
//値を習得
if (isset($_POST["selOpe"])){
$a = $_POST['txtA'];
$b = $_POST['txtB'];
@masamasa6210
masamasa6210 / calc.html
Created November 28, 2016 06:22
電卓
<html>
<head>
<title>calc.html</title>
</head>
<body>
<form name="form1" action="calc.php" method="post">
<input type = "text" name = "txtA">
<select name="selOpe" size=1>
<option value = "+">+</option>