I trying to parse HTML Table tags and get all the values in a Array. How can I get values from that array One-by-One. I have tried many array sample but when I try to print this array it only returns series of value "Array" not the value. see this image how that array look like ---------------------------------------------------------------------------------------- I want that first it shows value for node "1" value...1,2,3,4 and so on Any help
If you have a list of arrays and you want to loop through all of them, you can use for loop ! <?php for ($i=1; $i<=100; $i++) { echo $myarray[$i]; } ?> PHP: