-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
42 lines (37 loc) · 1.06 KB
/
settings.php
File metadata and controls
42 lines (37 loc) · 1.06 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
<html>
<?php
session_start();
include "scribble.php";
?>
<head>
<title></title>
<link rel="stylesheet" href="settings.css">
</head>
<body>
<div class="container">
<h2> GEEKSTER </h2>
<h3>ADD YOUR DATA</h3>
<?php foreach ($query1 as $q) { ?>
<form action="#" name="contact_form">
<label for="username">Username</label>
<input name="username" type="text" value="<?php echo $q["username"]; ?>" required />
<br>
<label for="email">Email</label>
<input name="email" type="email" value="<?php echo $q["email"]; ?>" required />
<br>
<label for="bio">BIO</label><br>
<textarea name="bio" cols="30" rows="10"><?php echo $q["bio"]; ?></textarea>
<br>
<label for="email">Skills</label>
<input name="skills" type="text" value="<?php echo $q["skills"]; ?>" required />
<br>
<label for="url">URL</label>
<input name="url" type="text" value="<?php echo $q["profileUrl"]; ?>" required />
<div class="center">
<input type="submit" value="save" name="save">
</div>
</form>
<?php } ?>
</div>
</body>
</html>