Hello !

I am trying to keep my string after including av file.

file1.php:
(accessed with file1.php?id=1)

<?php
include 'index.php';

function func() {
echo "buddy";
}
?>

index.php:
<?php
echo "Hello";
if (function_exists('func')) {
call_user_func ('func');
}

The output should then be "Hello buddy";

Can anyone help me with this one ??

Regards
Bård Tommy Nilsen





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to