I am writing an installer application that will interact with the website and I need to use the php script to to process some data for me.
[php]
<?php include ("Encryption.php"); $data = $_POST[1]; ?> <? echo $data ?> [/php]I am assuming it is not as simple as calling post and can’t seem to find anything more in depth about the $_POST command other then receiving the post from a form. The way my program works is it reads the input from a text file, send that input as post data and then processes it, and writes it back to a different text file. Any help would be appreciated