Now, on phpBB, it's not possible to include php coding on the .tpl files and I have no idea when it comes to the .php files themselves - as to how I'd go about linking what's in the php files with what's in the templates.
Basically, could anyone tell me how I could achieve this by modifying viewforum.php?....
Code: Select all
<?php
if ($f=="1") {
echo "Example Description 1";
}
elseif ($f=="2") {
echo "Example Description 2";
}
else {
echo "Error";
}
?>
Hope this makes sense

Thanks