-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPHP.php
More file actions
51 lines (38 loc) · 1.12 KB
/
Copy pathPHP.php
File metadata and controls
51 lines (38 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
require("include/database.php");
require("include/navigationbar.php");
$title='PHP';
?>
<html>
<link rel="stylesheet" type="text/css" href="css/index.css">
<head>
<title>TexPert | <?php echo $title; ?></title>
</head>
<body>
<br><br>
<div class="container">
<div class="row">
<div class="col-sm-3">
<a href="Prog<?php echo $title; ?>/index.php">
<center>
<h5>Learn to Code with</h5>
<img src="ImageLogo/phplogo.png" height="150" width="150"><br><br>
<p class="btn btn-primary">Chat with Bot Now!</p>
</center>
</a>
</div>
<div class="col-sm-9">
<?php
$query=mysqli_query($con,"SELECT * FROM programming_description WHERE Language = '$title' ");
while ($row=mysqli_fetch_array($query)) {
?>
<h3> <?php echo $row['Title_Description']; ?> </h3>
<pre style="letter-spacing: 2px; white-space:pre-wrap"> <?php echo $row['Description']; ?> </pre>
<br><hr>
<?php } ?>
</div>
</div>
</div>
<?php require('include/footer.php'); ?>
</body>
</html>