php-listener

php-listener

Test integrations over HTTP using local standalone WAMP web-server.

https://drive.google.com/open?id=1P-s1_J1mh-mSaRqn_A-Y5eD4mM5CgqXI

Online docs: https://github.com/php-listener/blob/master/README.md

    • Related Articles

    • Simple PHP receiver for multipart post

      This simple receiver may be used with any HTTP server which supports PHP extension. ff_post.php <?php $uploaddir = 'log/'; echo "<pre>\n"; $uploadfile = $uploaddir . basename($_FILES['event']['name']); if ...
    • Simple Web form for testing receiver

      ff_post_form.html <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <form method="post" enctype="multipart/form-data" action="ff_post.php"> Enter event file: <input type="file" name="event" size="40"> Enter ...