i want to run a php server side code, on apache. are there any servers suppliers which enables your code opens ports using diffrent ips?
for example for 5 minutes my code will use this ip:
213.168.0.17
and after that it will switch the ip and will use this one (e.g):
213.198.0.10
and then after 5 minutes to switch for pseudo random ip again and agian.
i don’t want my code to use the same ip all the time.
thanks
I am answering this with the assumption that you will use this information in good faith.
If you are accessing a resource on another website, I suggest that you use cURL and harness its proxy option. You may check out the CURLOPT_PROXY option (curl_setopt) for this.
All you have to do is gather a list of ‘working’ proxy servers, put them in an array or a database and pick a certain IP to use for the certain time range.
You might also find this StackOverflow question useful.