mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
29 lines
957 B
PHP
29 lines
957 B
PHP
|
<?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);
|
||
|
|
||
|
?>
|