1.

Solve : How to show include data from a directory one by one??

Answer»

I have put some PHP content in a directory named "DATA" and i WANT to show them ONE by one through next and previous button

i am try to do this by this code

foreach (glob("data/*.php") as $filename) {
INCLUDE($filename);
}
?>

but it is showing all the content at a same page i want to do it one by one through next and previous button

Previous Page[/url] Next Page[/url]



Discussion

No Comment Found