Receiving post information from installer application

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 :slight_smile:

if you are using post get request you need to have different names for each of it so you can get your different info for each thing on the php side of it

so if 1 is the name of one of the inputs or text boxes or check boxes etc then you are on the right track

Sponsor our Newsletter | Privacy Policy | Terms of Service