Server scripting

From SoftwareGuy
Revision as of 16:36, 1 May 2024 by Mark (talk | contribs) (Created page with "== php == simple php example of server side message (from camera) with argument(s) <?php $direction = $_GET['Message']; $fcontents = file_get_contents('php://input') . " - " . $direction; file_put_contents('php.log', $fcontents, FILE_APPEND); ?>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

php

simple php example of server side message (from camera) with argument(s)

<?php

$direction = $_GET['Message'];

$fcontents = file_get_contents('php://input') . " - " . $direction;

file_put_contents('php.log', $fcontents, FILE_APPEND);

?>