php begineer
Posted: Sat May 12, 2012 4:42 am
Can I get a simple php code to measure how many words per minute someone can type?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
As a PHP beginner, the very first thing you need to learn is that PHP is a server language, so it can never handle anything that the user does (like using the keyboard or the mouse) because it only runs before the page is sent to the browser. What you want to do must be done with Javascript, in the html page.samreenshinde wrote:Can I get a simple php code to measure how many words per minute someone can type?