-
Notifications
You must be signed in to change notification settings - Fork 0
/
learnstock.php
142 lines (115 loc) · 3.69 KB
/
learnstock.php
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
// Username is root
$user = 'root';
$password = '';
// Database name is gfg
$database = 'stockify';
// Server is localhost with
// port number 3306
$servername='localhost:3306';
$mysqli = new mysqli($servername, $user,
$password, $database);
// Checking for connections
if ($mysqli->connect_error) {
die('Connect Error (' .
$mysqli->connect_errno . ') '.
$mysqli->connect_error);
}
// SQL query to select data from database
$sql = "SELECT Links FROM learning WHERE Course_Name = 'Stock Market'";
$result = $mysqli->query($sql);
$mysqli->close();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<title>Learn Stock</title>
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="assets/css/templatemo-574-mexant.css">
<link rel="stylesheet" href="assets/css/owl.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/learning.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css">
<style>
#logo-image{
max-width:578px;
max-height:431px;
width:115px;
height:75px;
}
iframe{
padding:15px;
margin:10px;
}
</style>
</head>
<body>
<header class="header-area header-sticky">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="main-nav">
<a href="index.html" class="logo">
<img src="Screenshot_2022-03-04_at_2.42.56_PM-removebg-preview-modified.png" id="logo-image" alt="">
</a>
<ul class="nav">
<li ><a href="home.php">Home</a></li>
<li ><a href="stock.php">Stock</a></li>
<li ><a href="our-services.html">Learning</a></li>
<li ><a href="portfolio.php">Portfolio</a></li>
<li ><a href="logout.php">Logout</a></li>
</ul>
<a class='menu-trigger'>
<span>Menu</span>
</a>
</nav>
</div>
</div>
</div>
</header>
<div class="page-heading">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="header-text">
<h2>Stock Market</h2>
<div class="div-dec"></div>
</div>
</div>
</div>
</div>
</div>
<div class="content">
<?php // LOOP TILL END OF DATA
while($rows=$result->fetch_assoc())
{
?>
<!--FETCHING DATA FROM EACH
ROW OF EVERY COLUMN-->
<iframe width="420" height="315"
src="
<?php echo $rows['Links'];?>
">
</iframe>
<?php
}
?>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12">
<p>Copyright © 2022 Stockify, Ltd. All Rights Reserved.
<br>Designed by Team 8</a></p>
</div>
</div>
</div>
</footer>
</body>
</html>