I wold like to make a php proxy. To give you more details:
Let's say I have 10 proxy ips taken from some proxy lists.
I wold like to make a page (using php) that uses them one after another
to acces google.com (for example) 10 times using these 10 proxy ips one at the time.
For example:
$page= file("http://www.google.com/");
foreach($page as $part)
echo $part;
this will acces google.com as proxy with the ip adress as being the host (of this page) ip adress.
How can i change this ip adress using php?
Is that even possible?
Let's say I have 10 proxy ips taken from some proxy lists.
I wold like to make a page (using php) that uses them one after another
to acces google.com (for example) 10 times using these 10 proxy ips one at the time.
For example:
$page= file("http://www.google.com/");
foreach($page as $part)
echo $part;
this will acces google.com as proxy with the ip adress as being the host (of this page) ip adress.
How can i change this ip adress using php?
Is that even possible?
