Hello, I am stuck with a semi-hard problem with 'simple html dom' (php class used for html parsing). I've used it many times before so I know how to do simple parsing. PROBLEM:
$k=0;
for ($k = 0; $k < 15; $k++){
$link[$k] = 'www.madeupaddress.com/' . $test[1][$k];
print($link[$k]);
$test = file_get_html('$link[$k]');
echo($test);
}
What is the answer to this?