'; // Addon Version: $addon_version = "0.1"; // Just always remember the Front Interface function: // add_front_functions($addon_function_name,$addon_workspace); // We use the Front Interface to place the Helloworld text right after a comment is stored in the database: add_front_functions('say_hello_front','comment_accepted','',''); function say_hello_front() { $hellotext = '

This is my front text:
'.$_SESSION['sayhello'].'

'; echo $hellotext; } // To see it working just write a comment in your blog and you will see it in the Thankyou page. // Not so beautiful because it is set before the DOCTYPE declaration but this is only for testing purpose. // Never use it in your real blog ;-) ?>