I have a page like w/e more HTML I need to grab all the data between the tags and not the first one. Currently I use
/\"
Look into the function preg_match_all.
use this with preg_match_all()
preg_match_all()
preg_match_all("/<?php([^<]*?)\?>/siU",$html,$output); print_r($output[1]);