php begineer
Moderator: General Moderators
-
samreenshinde
- Forum Newbie
- Posts: 3
- Joined: Sat May 12, 2012 4:40 am
php begineer
Can I get a simple php code to measure how many words per minute someone can type?
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: php begineer
You probably want to do that in Javascript. Search and you should find examples.
(#10850)
Re: php begineer
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?