Posts

Showing posts from November, 2023

Wine tool installation

Image
 Wine Tool Installation In Parrot OS  Enter the following commands Step1: sudo apt install wine64 Step2: And enter ("wine") which gives error shown in the image Step3:Now enter ("sudo dpkg --add-architecture i386") and        ("sudo apt-get update && apt-get install wine32") enter this commands and ("sudo apt-get install wine32") Step4:Enter the below command  ("sudo apt install wine32 -t parrot-backports") Step5: Now enter ("wine") in the terminal 

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 == ""...