PHP Classes

File: amt_notify_test.php

Recommend this page to a friend!
  Classes of CPK Smithies   Amazon Mechanical Turk PHP REST API   amt_notify_test.php   Download  
File: amt_notify_test.php
Role: Auxiliary script
Content type: text/plain
Description: Test notifications handler script
Class: Amazon Mechanical Turk PHP REST API
Setup crowdsourcing tasks with Mechanical Turk API
Author: By
Last change:
Date: 12 years ago
Size: 264 bytes
 

Contents

Class file image Download
<?php
/**
 * Test AMT notification reception
 * @author cpks
 * @package amt_rest_api
 * @license Public Domain
 */

$logfile = fopen('amt_test.txt', 'a');
fwrite($logfile, date('Y-m-d H:i:s') . PHP_EOL . print_r($_GET, TRUE) . "\n===\n");
fclose($logfile);
?>
OK