Ok, I have never been able to harness how to use arrays but in this circumstance I need to I am trying to display the contents of the arrays but.. i can't get it to do I have been fidling for the last two hours and searching the web with no resolve it is probably just a simple issue I can't see but... ya
So here is my script so just basically want to be able to display the array items i chose.
So here is my script so just basically want to be able to display the array items i chose.
| Code: |
|
<?php $untreatedstats = file_get_contents("http://hiscore-web.runescape.com/aff/runescape/hiscorepersonal.ws?user1=upcast"); preg_match_all('/<td align=\"left\"><a href=\"overall.ws\?table=0&user=upcast\"> Overall <\/a><\/td> <td align=\"right\">(.*)<\/td> <td align=\"right\">(.*)<\/td> <td align=\"right\">(.*)<\/td> <\/tr> <tr>/iU', $untreatedstats, $matches); //Content echo $match[1]; ?> |
