aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jquery3.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

23 lines
889 B
PHP

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