aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jquery8.php

27 lines
947 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
/*************************************************/
/** M133 jQuery PHP simple call **/
/** Author: M. von Orelli **/
/** Datum: 20.3.17 **/
/** Version: 1.0 **/
/** Applikation:jQuery PHP Function Call JSON **/
/** return value **/
/*************************************************/
/*************************************************/
/* Datum ¦ Aenderung **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/* ¦ **/
/*************************************************/
$Person = array("Vorname"=>"Matthias", "Nachname"=>"von Orelli");
// print_r($Person);
print json_encode($Person);
?>