Web Engineering Paper Theory - Spring 2021
Web Engineering Paper Theory - Spring 2021
Before you start your paper, add following line in the title tag of each HTML page <title > {Your First Name, Last
Name, Registration No.}
Anyone found sharing code with others or trying to do any cheating will be expelled from exam with zero mark
No need to write the paper by hand, just send the source code in separate folders by Q No and zip the all files in
single folder using {FirstName_LastName_RegistrationNo}
__________________________________________________________________________________
You have to create following tables with exact following names of table and columns and no need to
send me SQL script to create database, as I have already created these tables for my paper checking
solution:
DB Name: plantstoreDB
Table 1: tblusers {ID (Bigint Auto Increment), email (Varchar 100), password (varchar 100)}
Table 2: tblplant{plantid (Bigint Auto Increment), plantcategory (Varchar 100), PlantName (Varchar
100), Plantsize (varchar 50), Plantprice (Float), PlantDescription (200)}
Q1: We are going to create a small plant store admin panel of website with following features:
v. HTML Table showing all added plants in the form of HTML table using
following columns (Marks 5)
1. ID {Auto Increment ID generated by Database}
2. Plant Category
3. Plant Name
4. Plant Size
5. Price
6. Description
Q No 2: Change “Add Plant From” created above into Ajax (Marks 5).