MadTechie Posted July 14, 2007 Share Posted July 14, 2007 quick question.. test.php (yes i know theirs no PHP code its just a test file) <body> Hello World </body> test2.php <?php ob_start(); include "test.php"; ob_clean; echo "bye"; ?> i run test2.php and get Hello World bye but i expected just bye. any ideas ? i'll check for replies in the moring.. night all Link to comment https://forums.phpfreaks.com/topic/59889-solved-ob_clean/ Share on other sites More sharing options...
MadTechie Posted July 14, 2007 Author Share Posted July 14, 2007 never mind, solved it used ob_end_clean(); NOTE to self don't code then tired! Link to comment https://forums.phpfreaks.com/topic/59889-solved-ob_clean/#findComment-297822 Share on other sites More sharing options...
matto Posted July 14, 2007 Share Posted July 14, 2007 I think you will find it would have worked if you had of changed this: ob_clean; to this: ob_clean(); Link to comment https://forums.phpfreaks.com/topic/59889-solved-ob_clean/#findComment-297830 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.