aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/07-JQuery-skript/07-jQueryLoesungen/jquery5.php

29 lines
957 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
/*************************************************/
/** M133 jQuery PHP Call **/
/** Author: M. von Orelli **/
/** Datum: 20.3.17 **/
/** Version: 1.0 **/
/** Applikation:jQuery Taschenrechner Funktion **/
/*************************************************/
/*************************************************/
/* Datum ¦ Aenderung **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/*************************************************/
$CRLF = chr(13). chr(10);
$name = $_REQUEST['name'];
$time = $_REQUEST['time'];
$myfile = fopen("jquery5.log", "a+");
fwrite($myfile, $name. ",". $time. $CRLF );
fclose($myfile);
?>