aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/07-JQuery-skript/07-jQueryLoesungen/jquery4.php
Müller Harald 507e5da390 muh
2022-05-13 11:53:50 +02:00

27 lines
947 B
PHP

<?php
/*************************************************/
/** M133 jQuery PHP Call **/
/** Author: M. von Orelli **/
/** Datum: 20.3.17 **/
/** Version: 1.0 **/
/** Applikation:jQuery call PHP **/
/*************************************************/
/*************************************************/
/* Datum ¦ Aenderung **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/*************************************************/
$CRLF = chr(13). chr(10);
$name = $_REQUEST['name'];
$time = $_REQUEST['time'];
$myfile = fopen("jquery4.log", "a+");
fwrite($myfile, $name. ",". $time. $CRLF );
fclose($myfile);
?>