
how to contol the rhythm or time of my process?
Moderators: egami, macek, gesf
I'm just wondering why you need such a function??
you create web-pages with php, you want them to be made as fast as possible. No need for a wait function there....
I don't know you're actual problem (why you want that function), but I think you can work around it another way
So... What is the actual problem??
Greetz Daan
you create web-pages with php, you want them to be made as fast as possible. No need for a wait function there....
I don't know you're actual problem (why you want that function), but I think you can work around it another way
So... What is the actual problem??
Greetz Daan
If you want text te move around on you're page in the users browser you cannot use PHP.
PHP is server side, once it has been sent to the user php can't do anything about the contents.
You need to use something that is client-side (java, javascript, flash, stuff like that) to move you're string around on the page.
Greetz Daan
PHP is server side, once it has been sent to the user php can't do anything about the contents.
You need to use something that is client-side (java, javascript, flash, stuff like that) to move you're string around on the page.
Greetz Daan
mybird wrote:oh i s, thanks
so the main use of php is to use data base?
Server side languages are used to generate page content 'on-the-fly' for instance, if you wanted a unique page for every visitor on your page. PHP cannot do special effects with your page, that's the client side (because the client's browser will do the effects on the page). PHP merely sends the coding for it, it's whether or not the clients browser can display it is the question.