Did you also change $vtitle? It should now be
PHP Code:
$vtitle = $match;
Edit: Oh, and if the first match ($matches[0]) should be skiped, you're better of using this:
PHP Code:
for ($i = 1; $i < count($matches); $i++) { $vtitle = $matches[$i]; // ... }
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
Last edited by lizciz; 01-18-2010 at 01:46 AM..
|