Create a simple web form with the following inputs on it: Set the method to be P
ID: 638749 • Letter: C
Question
Create a simple web form with the following inputs on it: Set the method to be POST and the action to be formProcess.php A prompt for username (text input), set both the size and maxlength attributes to 15 characters A prompt for a password (input type=password). Set the size attribute to be 15 but no limit on characters submitted. A prompt to confirm the password (input type=password). Set the size attribute to be 15 but no limit on characters submitted. A pair of radio buttons with the prompt "I agree to the terms and conditions" with the choices of yes and no. A textarea that is 6 rows and 50 columns labeled as "Enter comments here" A submit button and a reset button. Create the formProcess.php script, it should Confirm that the initial password and confirmation of the password match (are the exact same) Evaluate the strength of the password, simply re-use the restrictions and (most of) y. If the password is "good" tell the user, if it is not tell the user why it is not. If the user did not agree to the terms and conditions, tell them so and then exit If they did agree to the terms and conditions, count the total words entered in the textarea for comments, and count the number of times each word appeared in the comments. Then display the words and the count for each in a table, using alternating background colors on each row.
Explanation / Answer
Here's the code.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.