Beispiel #1
0
function alpha()
{
    return beta();
}
Beispiel #2
0
<?php

include_once $_SERVER['DOCUMENT_ROOT'] . 'cloud/models/beta/index.php';
extract($_REQUEST);
if (!isset($email)) {
    $email = "noEmail";
    echo json_encode(array("status" => "fail", "reason" => "no email"));
    return;
} else {
    beta($email);
    echo json_encode(array("status" => "success", "reason" => "user added"));
}
Beispiel #3
0
function alfa()
{
    beta();
}
Beispiel #4
0
function gamma()
{
    beta();
}