kobescoresagain
03-09-2006, 05:04 PM
$link_pattern = '/class="gSGRowEven">((.|\s)+?)<\/td>/';
preg_match_all($link_pattern, $roster[$i][$j], $link);
I need this to basically treat gSGRowEven and gSGRowOdd as the same. I thought I would just need to use | , but I think I am doing something wrong. Can someone tell me what I need to put there?
preg_match_all($link_pattern, $roster[$i][$j], $link);
I need this to basically treat gSGRowEven and gSGRowOdd as the same. I thought I would just need to use | , but I think I am doing something wrong. Can someone tell me what I need to put there?