hello, i have an array of 9 strings, this is going to be used for a curl program, so basically, the 9 strings are urls, just trying to figure out how i would do it to select each url in the loop. to place the value in the url section for curl.
i have
$s1= "http://www.site.com";
up to 9
then
$sites = array($s1,$s2,$s3,$s4,$s5,$s6,$s7,$s8,$s9);
i was going to use foreach ($sites as $data) {
but that just freezes
so here i come for your advice. any help is greatful.
thanks.