jek1134 Posted July 13, 2006 Share Posted July 13, 2006 I am sending HTTP posts via cURL from HTML forms that come from an outside webserver to another outside server. I need to randomize the IP address of the post. Does anyone know how this would be done? Quote Link to comment https://forums.phpfreaks.com/topic/14514-curl-http-post/ Share on other sites More sharing options...
wildteen88 Posted July 13, 2006 Share Posted July 13, 2006 To randomly use an IP address. First put them in an array, then use the rand function to get a random number between 1 and the amount of ip addresses you have in your array. Then use the rand number to get the IP address from the array of IPs. Like so:[code=php:0]// array of IPs$ips = array("127.0.0.1", "129.6.85.66", "198.0.65.5");// get random number for ip id$ipid = rand(1, count($ips))-1;// get IP address// $ips[$ipid] is the code needed to get the IP Address from the array of IPsecho $ipid . ' - ' . $ips[$ipid];[/code] Quote Link to comment https://forums.phpfreaks.com/topic/14514-curl-http-post/#findComment-57499 Share on other sites More sharing options...
jek1134 Posted July 13, 2006 Author Share Posted July 13, 2006 Thank you for the reply. That helps. It may be necessary however to use a proxy server down the road. Is there a way to do this with a cURL HTTP POST? Quote Link to comment https://forums.phpfreaks.com/topic/14514-curl-http-post/#findComment-57507 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.