WEB PROGRAMMING LAB (html&php)
WEB PROGRAMMING LAB(NEP) 1.Create a form with the elements of Textboxes, Radio buttons, Checkboxes, and so on. Write JavaScript code to validate the format in email, and mobile number in 10 characters, If a textbox has been left empty, popup an alert indicating when email, mobile number and textbox has been left empty code: < html > < head > < title > Black Eye Form </ title > < script > function Form () { var name = document . forms [ "myForm" ][ "name" ]. value ; var email = document . forms [ "myForm" ][ "email" ]. value ; var password = document . forms [ "myForm" ][ "password" ]. value ; var phone = document . forms [ "myForm" ][ "phone" ]. value ; if ( name == "" ) { alert ( " name must be filled out" ); return false ; } if ( email == ""...