You can't archieve this with PHP alone... PHP runs in the web server,
what the user see runs on the web browser (after the web server serves it).
You can't expect to have that kind if interactivity between the browser
and the web server without further programming in some sort of conduit
betwee
I am fairly new to php and am having an issue with creating pages "on the
fly" that is not loading an html page but creating them from under php. what
I need to do is this:
function createpage1(){
//make page here
}
return();
function createpage2(){
//make page here
}
return;
//main loop
create