PDA

View Full Version : How can I include functions that return echo values to my styles?


ThorstenA
08-13-2008, 10:09 AM
There are functions that return echo values, how can I integrate them with style where I have a $content variable?

function sayhello()
{
echo 'hello';

}

I tried this but it did not work.

eval('$content .= "' . sayhello() . '";');

$content .= sayhello();

Opserty
08-13-2008, 10:15 AM
Google: "PHP Output Buffering"

Marco van Herwaarden
08-13-2008, 10:15 AM
You would need to use a return() instead of echo.

ThorstenA
08-13-2008, 10:35 AM
Unfortunately functions I need from adminfunctions.php and adminfunctions_stats.php only return echo values. Is there a way to handle these echo values like returns?

Marco van Herwaarden
08-13-2008, 11:05 AM
You can use these instructions: Including External Files (http://www.vbulletin.com/docs/html/main/templates_externalfiles)

ThorstenA
08-13-2008, 12:35 PM
My Skript works, thank you for helping me.