Log in

View Full Version : How Make PHP as Plugin?


Nuss
04-09-2008, 01:33 PM
i need to trasnform a PHP to Vb plugin

For example if i have

<?
if(some condition){
echo 'hello world';
}else{
echo 'Good bye';
}
?>

(This is only example, my php is much more complicated)

So i need to trasform it to Plugin and call it in some Template with $my_php_plugin

How can do it??

Tanks in advance ppl!!

Opserty
04-09-2008, 01:38 PM
if(some condition)
{
$var = 'hellow world';
}
else
{
$var = 'Good Bye';
}

Hook Location: global_start

Use $var in a template for example the header template.

Calling custom templates:

eval('$var = "'. fetch_template('sometemplate') .'";');