Can you tell how I use HTTP post in efs? I need to send a signal to the computer that will perform order execution at a specific point.
Thanks
Ben
Thanks
Ben
var Adata = new HTTP("http://www.yoursite.com/yourdata.txt");
/* This call tries to open the file you select. Now the Adata variable holds the data for each line in the file. If there is not file there, it should return "null".
Think of Adata as simply a file pointer now. Test it for "null" and Adata.length, then read the file into efs.
*/
var Pushdata = new HTTP("http://www.yoursite.com/addrecord.php?len=20");
// in this case I'm passing a parameter to the php script.
Comment