Quote:
Originally posted by Neo
In one sentence what does this do?
|
You can program your vb templates to display different HTML codes to your visitors under different conditions. So they are not static anymore..
Since you are a hacker this information can clarify things better for you:
After you installed the hack you dont need to hack vb. code for this:
PHP Code:
if ( any condition goes here)
{
eval("dooutput(\"".gettemplate("ANY TEMPLATE GOES HERE")."\");");
}
else
{
eval("dooutput(\"".gettemplate("ANY TEMPLATE GOES HERE")."\");");
}
You can now do the same thing by editing the relevant template and insert:
PHP Code:
[[(your condition goes here)]]
HTML codes displayed if your condition applies
[[/(your condition goes here)]]
Other HTML codes displayed regardless of your condition
Hope this helps a bit..