-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchres.php
116 lines (109 loc) · 4.53 KB
/
searchres.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
<?php
session_start();
require("db/configDB.inc.php");
$con=mysqli_connect(null, DB_USER, '', "CodeMuse", null, "/cloudsql/animated-guard-617:mydb");
//$con=mysqli_connect("173.194.109.158", "root", "yaycodemuse", "CodeMuse");
//$con=mysqli_connect("localhost","root","root","codemuse");
// Check connection
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
// get user's nickname using their unique ID using defined TABLE_USERS table name from config
$sql = "SELECT * FROM project";
$result = mysqli_query($con,$sql);
?>
<!DOCTYPE html>
<!-- This site was created in Webflow. http://www.webflow.com-->
<!-- Last Published: Sat Jun 21 2014 07:25:06 GMT+0000 (UTC) -->
<html data-wf-site="53a510758b680c4d190ddb90">
<head>
<meta charset="utf-8">
<title>CodeMuse - Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Webflow">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/webflow.css">
<link rel="stylesheet" type="text/css" href="css/find-project.webflow.css">
<link rel="stylesheet" type="text/css" href="css/code-muse.webflow.css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ["Montserrat:400,700","Bitter:400,700,400italic"]
}
});
</script>
<script type="text/javascript" src="js/modernizr.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="https://y7v4p6k4.ssl.hwcdn.net/placeholder/favicon.ico">
<link rel="apple-touch-icon" href="images/webclip-slate.png">
</head>
<body>
<header class="w-clearfix navbar"><a class="button project-button" href="projects-landing-page.php">Projects</a>
<div class="w-container">
<div class="w-row">
<div class="w-col w-col-4">
<img class="logo" src="images/Keyboard.png" width="23" alt="53a510ea4e0d51ec23981546_Keyboard.png" href="index.php">
<div class="app-name">Codemuse</div>
</div>
<div class="w-col w-col-8 nav-column"><a class="nav-link" href="login.php">Login</a><a class="nav-link" href="sign-up.php">Sign Up</a><a class="nav-link" href="create-project.php">Create Project</a>
</div>
</div>
</div>
</header>
<div class="section">
<div class="w-container">
<div class="w-row-new-class">
<div class="w-col-w-col-6">
<h3><?php echo $_GET['sitem']; ?> Projects</h3>
</div>
</div>
<?php
$result = mysqli_query($con,$sql);
$row_cnt = $result->num_rows;
$i = 0;
//while($row = mysqli_fetch_array($result) and $i < 4) {
while($row_cnt > 0) {
?>
<div class="w-row snippet-row">
<?php
for ($i = 0; $i < 4 and $row_cnt > 0; $i++) {
$row = mysqli_fetch_array($result);
$row_cnt--;
?>
<div class="w-col w-col-3 w-col-small-6">
<a class="w-clearfix w-inline-block snippet" href="project.php?pid=<?= $row["pID"] ?>">
<!img class="example-image" src="http://uploads.webflow.com/placeholder/image-placeholder.svg" alt="image-placeholder.svg">
<img class="example-image"
src="http://ii.library.jhu.edu/files/2013/05/MakingGroupProjectsWork-300x148.png" alt="53a51c3b6ef253ee23c20028_C%2B%2B-logo.jpg">
<div class="snippet-text-section">
<div class="snippet-title"><?php echo $row["pName"]?></div>
<div class="snippet-text"><?php echo $row["pTagline"]?></div>
</div>
</a>
</div>
<?php
}
?>
</div>
<?php
}
?>
</div>
</div>
</div>
<div class="section">
<div class="w-container">
<div class="w-row">
<div class="w-col w-col-6 left-footer-col">
<div class="footer-text">© CodeMuse. All Rights Reserved.</div>
</div>
<div class="w-col w-col-6 footer-nav-bar"><a class="footer-link" href="#">About</a><a class="footer-link" href="#">Help</a><a class="footer-link" href="#">Contact</a>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="js/webflow.js"></script>
<!--[if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif]-->
</body>
</html>