spacer
spacer search

i-Vibe.com
developer resource & tips portal

Search
spacer
Newsflash
01/27/06: I just had some time to cleanup this website. I will add more articles for AJAX this coming weekend.
 
numbers.jpg
Main Menu
Home
Articles
Programming
Networking/Security
Data Modeling
Interface Design
Developer News
Downloads
Links
Login





Lost Password?
No account yet? Register
Related Articles
 
Home arrow Programming arrow PHP arrow Buffering PHP Output
Buffering PHP Output Print E-mail
  • Currently 2.3/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Rating: 2.3/5 (3 votes cast)

Written by Roceller Alvarez   
Saturday, 26 February 2005
This tip is very useful if you want to integrate existing PHP applications, such as a blogger or forum, to your websites existing template design.
ob_start();                     // start output buffer
echo "output data"; // fill buffer
$content = ob_get_contents(); // pass buffer which can be used in your template
ob_end_clean(); // clean buffer

Comments
thanks
Written by Guest on 2006-02-07 23:24:24
it was helpful 
 
Thanks :)

Only registered users can write comments.
Please login or register.

Powered by AkoComment 2.0!

 
< Prev
spacer
 
spacer