How to make my own while Loop just like Wordpress Loop?
- by Takien
Hi all programmer... im new here and new in PHP too..
Just wondering how to make my own flexible loop just like in Wordpress...
Note im not talking about wordpress.. I want to implement it on myown PHP application...
let's look back in WP, there is a code something like this:
while (have_post() : thepost())// .. bla bla...
echo the_title();
echo the_content();
endwhile; // this is just an ilustration
Could you figure out how have_post() or the_post() interact with database,
so that they can be loop..
thanks..