View Single Post
Old 08-23-2004, 06:35 AM   #5
claudiomet
Green Mole
 
claudiomet's Avatar
 
Join Date: Aug 2004
Location: Chile
Posts: 13
Thanks!

Finally I found the solution:
In search_function.php, add the following code right after the function statement:

ob_start();
require("my_include.php");
$my_include = ob_get_contents();
ob_end_clean();

then, add my_include to array:

$t_mstrings = compact('my_include','powered_by_link','title_message','phpdig_version','re sult_message' ,'nav_bar','ignore_message','ignore_commess','pages_bar','previous_link','n ext_link','templates_links');

and insert <phpdig:my_include/> in the template file ... that's all.

Thanks a lot for your time Charter!
claudiomet is offline   Reply With Quote