tags:

views:

60

answers:

2

Hi
How can I open another site from PHP in the Background?
I try to use the bit.ly API.
Thank you

+4  A: 

Let me try to guess what you want here. If you want to make an HTTP GET request from a PHP script, use the functions file or file_get_contents.

Propeng
Thank you. Thats exactly what I want.
Eragonio
+1 for the guessing abilities! :)
acmatos
+1  A: 

CURL can help you. It opens a request and saves the result of next site to a variable .

KoolKabin