MacResource
PHP question. How to send data using fwrite? - Printable Version

+- MacResource (https://forums.macresource.com)
+-- Forum: My Category (https://forums.macresource.com/forumdisplay.php?fid=1)
+--- Forum: Tips and Deals (https://forums.macresource.com/forumdisplay.php?fid=3)
+--- Thread: PHP question. How to send data using fwrite? (/showthread.php?tid=15824)



PHP question. How to send data using fwrite? - volcs0 - 07-26-2006

I want to set up a mini-API for a bunch of php scripts I've written.

I want my script to be able to get data using fopen.

eg.

$url = "http://www.mypage.com/myscript.php?foo=1&bar=2"
$handle = fopen($url, "r");

And have myscript.php return a stream of data based on inputs foo and bar.

My question is, how do set up myscript.php? How do I "send" the data? Is it fwrite? Open stream? POST?

I can usually figure things out by googling around, but this one has me stumped.

Thanks.

Sam V.


Re: PHP question. How to send data using fwrite? - Greg the dogsitter - 07-26-2006

I'm a php newbie, but it looks like you:

fopen, fread to read from a file...
fopen, fwrite to write to a file.

http://us2.php.net/manual/en/function.fwrite.php

fGtDS

f!


Re: PHP question. How to send data using fwrite? - volcs0 - 07-26-2006

I asked over in the php freaks forums... is looks like I need the CURL function... I'll post back when I figure it out.