forked from AlexandroLuis/beecrowd-problems-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditProblemInfo.php
75 lines (68 loc) · 3.17 KB
/
EditProblemInfo.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
<?php
ini_set('display_errors', 0 );
error_reporting(0);
session_cache_expire(60);
session_start();
if(!$_SESSION['usuario']) {
header('Location: index.php');
exit();
}
$id=$_GET['id'];
require('Connection.php');
$result = mysqli_query($db, "SELECT * FROM exercicio where id=$id");
$row = mysqli_fetch_assoc($result);
?>
<html>
<head>
<title>Editar Exercicio</title>
<meta charset="utf-8">
<link rel="stylesheet" href="Style/style.css">
<link rel="shortcut icon" href="Images/favicon.ico" />
<script src="https://apis.google.com/js/platform.js" async defer></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<meta name="google-signin-client_id" content="384602407862-g2t95qbtuto07r923qlic2317dbrkboa.apps.googleusercontent.com">
</head>
<body>
<ul><!-- Menu Inicial -->
<li style="float:left"><a href="UserProfile.php"><?php session_start(); echo "Olá, ". $_SESSION['usuario']; ?>!</a></li>
<li style="float:right"><a href="Logout.php">Sair</a></li>
<li style="float:right"><a href="ShowProblemsInfo.php?id=<?php echo $row['id']?>">Voltar</a></li>
</ul><!-- Fim Menu Inicial -->
<h2 align ="center">Editar Informações do Exercício
<?php
$id=$_GET['id'];
require('Connection.php');
$nome = mysqli_query($db, "SELECT * FROM exercicio where id=$id");
while($row2 = mysqli_fetch_assoc($nome)){
echo"<tr>
<td></td>
<td>" .$row2['id'] .",</td>
<td>" .$row2['name'] ."!</td>";
}
?>
</h2>
<form class="form-style-8" action="EditProblemMysqlConnection.php" method="POST">
<div style="float:center">
<input name="class" type="hidden" value ="<?php echo $row['class']?>"<br>
<input name="type" type="hidden" value ="<?php echo $row['type']?>"<br>
<input name="status" type="hidden" value ="<?php echo $row['status']?>"<br>
<!--<h5 style="float:left">Id:</h5>-->
<input type="hidden" class="w3-input" name="id" size="50" value="<?php echo $row['id']?>"/><br>
<h5 style="float:left">Nome:</h5>
<input type="text" class="w3-input" name="name" size="50" value="<?php echo $row['name']?>"/><br>
<h5 style="float:left">Descrição:</h5>
<input type="text" class="w3-input" name="description" size="50" value="<?php echo $row['description']?>"/><br>
<h5 style="float:left">Dificuldade E2PC:</h5>
<input type="number" class="w3-input" id="quantity" name="level2pc" min="01" max="10" value="<?php echo $row['level2pc']?>"><br>
<h5 style="float:left">Dificuldade:</h5>
<input type="number" class="w3-input" id="quantity" name="level" min="01" max="10" value="<?php echo $row['level']?>"><br>
<h5 style="float:left">Observação:</h5>
<input type="text" class="w3-input" name="Observation" size="50" value="<?php echo $row['Observation']?>"/><br>
<h5 style="float:left">Código:</h5>
<br><textarea name="source" rows="1000" cols="70"><?php echo $row['source']?></textarea><br>
<input name="uploader" type="hidden" value ="<?php echo $row['uploader']?>"/><br>
<input type="submit" style="float:right" value="Editar"/><br><br>
</div>
</form>
</body>
</html>