OK I need some help in phpBB
I have this:
And I want the output to go into this:
Any help is appreciated. Thank You
I have this:
PHP:
$handle = opendir('templates');
while (false !== ($category = readdir($handle))) {
$category = str_replace('.', '' ,$category);
$category = str_replace('png', '' ,$category);
$category = str_replace('indexphp', '', $category);
$category = str_replace('Thumbsdb', '', $category);
$category1 = str_replace(' ', '%20', $category);
if ($category != '') {
echo '<option value="'.$category.'">'.$category.'</option>';
}
}
closedir($handle);
And I want the output to go into this:
PHP:
$template->assign_vars(array(
'L_VSIG_TITLE' => 'Create Your Sig!',
'L_VSIG_CATEGORY' => 'THAT CODE RIGHT HERE',
)
);
Any help is appreciated. Thank You








