PHP Mysql
PHP Mysql
What is CSS?
CSS stands for Cascading Style Sheets
CSS describes how HTML elements are to be displayed on screen, paper, or in other media
CSS saves a lot of work. It can control the layout of multiple web pages all at once
External stylesheets are stored in CSS files
<html>
<body>
<table>
<tr>
<td>Register Number</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Name</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Register Number</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Semester</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Branch</td>
<td><input type="text"></td>
</tr>
<tr>
</tr>
</table>
</body>
</html>
1. Write any two web servers (2)
Apache, IIS
2. What is Session ? (3)
PHP session is used to store and pass information from one page to another temporarily.