Skip to content
David Turner edited this page Jul 24, 2015 · 11 revisions

Do the Mozilla tutorial on Ajax.

Place your work in a folder named ajax inside your Cloud9 workspace.

Send me a link to the Web page with your solution.

<?php 
    $array = [
        "userData"       => $_POST['userName'], 
        "computedString" => "Hello, " . $_POST['userName']
    ];
    echo json_encode($array); 
?>

Clone this wiki locally