aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jquery10.php
Harald G. Mueller cdff097ef7 muh
2022-03-17 11:19:26 +01:00

26 lines
945 B
PHP

<?php
/*************************************************/
/** M133 jQuery PHP simple call **/
/** Author: M. von Orelli **/
/** Datum: 20.3.17 **/
/** Version: 1.0 **/
/** Applikation:jQuery PHP Addition **/
/** return value result **/
/*************************************************/
/*************************************************/
/* Datum ¦ Aenderung **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/*************************************************/
$zahl1 = floatval($_REQUEST['zahl1']);
$zahl2 = floatval($_REQUEST['zahl2']);
$result = $zahl1 + $zahl2;
echo $result;
?>