Quote:
Originally Posted by KirbyDE
PHP Code:
$vbulletin->templatecache['templatename'] = str_replace(array('search1', 'search2', 'search3'), array('replace1', 'replace2', 'replace3'), $vbulletin->templatecache['templatename']);
If that is what you want ...
|
I wanted something like:
PHP Code:
$x = 'everything
I
want
replaced
here';
$x_1 = 'everything
I
want
to
replace
here';
$vbulletin->templatecache['templatename'] = str_replace($x, $x_1, $vbulletin->templatecache['templatename']);
But it doesn't work...
Thanks for the help, anyway.