-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
107 lines (71 loc) · 2.36 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<link rel="stylesheet" type="text/css" href="style1.css" media="screen" />
<title>Tissue Culture Portal</title>
</head>
<body>
<div id="wrapper">
<?php include('includes/header.php'); ?>
<?php include('includes/nav.php');
include('includes/sidepic1.php');
$servername = "localhost";
$username = "root";
$password = "";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Create database
$sql = "CREATE DATABASE tissue";
if ($conn->query($sql) === TRUE) {
include('config1.php');
} else {
$sql00 = "DROP DATABASE tissue";
include('config1.php');
}
$conn->close();
?>
<div id="content">
</br>
<h2>Tedious Laboratory experiments</h2>
<p>
Plant tissue culture is still in its empirical stage, involving a lot of trials and error.</p>
<p>
This portal provides a 70% accurate means of simulating the desired concentration mixture .
<p><p><p><p><p>
</br>
</p>
</br>
<h2>Cost Efficiency</h2>
<p>
Due to the number of trials required for Plant tissue culture experiments, the cost of infrastructure and material resources are also high.
</p>
<p>
This portal reduces the experimental cost to a large extent.
</p>
<br></br>
<h2>Experiment Time management</h2>
<p>
The experiment is time and material intensive, running into several months of laboratory efforts to
build hormonal combinations that will be best for mass propagation of a particular plant specie.
<p>
</p>
<br></br>
<h2>Prediction of Culture mixture</h2>
<p>
This portal simply simulates and predicts the desired hormonal combinations using the provided input data. A two variable multi-Regression was used for the prediction.
<p>
The simulation time is dependent on the user's input data.
</p>
</div> <!-- end #content -->
<?php include('includes/footer.php'); ?>
</div> <!-- End #wrapper -->
</body>
</html>