Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
php
php
<?php

header("Content-Type: application/json");

if (isset($_POST['BTNEXIT']) && $_POST['BTNEXIT'] != '1') {
  return;
}


$view = '/profoundui/userdata/dspf/HelloWorld.json';
$output = array('view' => $view, 'screen' => 'HELLO');
echo json_encode($output);

?>

...