phpmysqliincluderequire

<!Doctype HTML>
<head>
<title>phpmysqliincluderequire</title
</head>

<body>



<?PHP 

include("systemwebtech.php");
           
             or

require("systemwebtech.php");
?>

Now Save systemwebtech.php file in same folder.

In systemwebtech.php file , write down a following code:-


<!Doctype HTML>
<head>
<title>systemwebtech.php</title
</head>

<body>

<table width="900"  height="500"  align="center"  border="4"  bgcolor="yellow" >

<tr><td>name</td>class<td>rollno</td><td>marks</td></tr>


<tr><td>eena</td>4rth<td>56</td><td>78</td></tr>

<tr><td>meena</td>5th<td>58</td><td>45</td></tr>

<tr><td>deeka</td>6th<td>36</td><td>66</td></tr>


</table>