The php code with html below is showing a blank white screen when I open it with a web browser. I have set up a php server to run it. What am I doing wrong?
<!DOCTYPE html>
<html>
<head>
<title>maro</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="custom.css">
</head>
<body>
<div class="container-fluid">
<form action="imagesear.php" method="get">
<div class="row" id="bg">
<div class="col-sm-1" id="resdoodle">
<a href="index.html"><font color="#FF0000">m</font><font color="#FFA500">a</font><font color="#008000">r</font><font color="#0000FF">o</font></a>
</div>
<div class="col-sm-6" id="searchbx2">
<div class="input-group">
<input type="text" class="form-control" name="search" id="boxstyle2" required>
<span class="input-group-btn">
<input type="submit" class="btn btn-secondary" name="search_btn" value="GO" id="btnstyle2">
</span>
</div>
</div>
</div>
</form>
</div>
<div class="result">
<?php
$search=$_GET["id"];
$_con=mysqli_connect("localhost","augustus","password");
mysqli_select_db($_con,"websited");
$_sql2="select * from webd where stitle like '%$search%'";
$rs=mysqli_query($_con,$_sql2);
if(mysqli_num_rows($rs)<1)
{
echo "<center><h4><b>Oops! No result found for your query</b></h4></center>";
exit();
}
while($resul2=mysqli_fetch_assoc($rs))
{
echo "<a href='".$resul2['slink']."'><img src='".$resul2['simg']."' height='200px' id="imgp"></a> ";
}
?>
</div>
<script src="jquery.min.js"></script>
<script src="tether.min.js"></script>
<script src="bootstrap.min.js"></script>
</body>
</html>
I tried troubleshooting my php server but it's fine since other php codes are running perfectly. Please help fix this code