How would I add a THIRD Title set?
Would I add :
PHP Code:
if ($post[field9]) {
$extratitle="$post[field9]<br>";
} else {
$extratitle="";
}
After
PHP Code:
if ($post[field7]) {
if ($post[field8]) {
$extratitle="<div style=\"width:100%; filter:glow(color=$post[field8], strength=3)\">$post[field7]</div>";
} else {
$extratitle="$post[field7]<br>";
}
} else {
$extratitle="";
}
Also...When you have these added, can you have them so the user cannot edit them?
Satan