Search found 2 matches

by sruthim
Thu Nov 27, 2008 10:50 pm
Forum: PHP - Code
Topic: for each loop not executing correctly with function call..
Replies: 3
Views: 214

Re: for each loop not executing correctly with function call..

Hi,
Did that ...But no use...
Hmm... Should I take care of anything else?
by sruthim
Thu Nov 27, 2008 5:14 am
Forum: PHP - Code
Topic: for each loop not executing correctly with function call..
Replies: 3
Views: 214

for each loop not executing correctly with function call..

I am trying to get the broken links for any web site. This is the code that I wrote for that   <?php   function get_a_href($file) {     $h1count = preg_match_all('/(href=")(.*?)(")/i',$file,$patterns);     return $patterns[2]; }   function get_images($file) {     $h1count = preg_match_all(...