Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PHP question. How to send data using fwrite?
#1
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.
Reply
#2
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!
Reply
#3
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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)