-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_inscritos.php
94 lines (71 loc) · 2.88 KB
/
update_inscritos.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
<?php
require_once "config.php";
require_once "menu.php";
$id = null;
if ( !empty($_GET['id'])) {
$id = $_REQUEST['id'];
}
$cod = null;
if ( !empty($_GET['cod'])) {
$cod = $_REQUEST['cod'];
}
if ( null==$id ) {
header("Location: index.php");
}
if ( !empty($_POST)) {
// keep track validation errors
$nameError = null;
$emailError = null;
$estadoError = null;
// keep track post values
$inscricao = $_POST['inscricao'];
$verifica = mysqli_query($con,"select * from inscricao where numero=$inscricao and etapa_idetapa=$id");
if (mysqli_num_rows($verifica) > 0) {
echo "<script>alert('INSCRIÇÃO JÁ CADASTRADO!!!');</script>";
echo "<meta http-equiv='refresh' content='0, url=./update_inscritos.php?id=$id&cod=$cod'>";
}
else {
mysqli_query($con,"UPDATE inscricao SET numero='$inscricao' where numero='$cod' and etapa_idetapa='$id'");
echo "<script>alert('INSCRIÇÃO ALTERADA COM SUCESSO!!!');</script>";
echo "<meta http-equiv='refresh' content='0, url=./inscritos.php?id=$id'>";
#header("Location: inscritos.php?id=$id");
}
}
else {
$sql = mysqli_query($con,"select a.nome, i.numero from inscricao i join atleta a on i.atleta_cpf=a.cpf where i.etapa_idetapa='$id' and i.numero='$cod'");
while ($data=mysqli_fetch_assoc($sql)){
$nome_participante = $data['nome'];
$inscricao = $data['numero'];
}
}
?>
<html>
<body>
<div class="container">
<div class="span10 offset1">
<div class="row">
<h3 align="center">ALTERAR INSCRIÇÃO</h3>
<br>
<br>
</div>
<form class="form-horizontal" action="update_inscritos.php?id=<?php echo $id?>&cod=<?php echo $cod?>" method="post">
<div class="control-group">
<label class="control-label">Name</label>
<div class="controls">
<input class="input-xlarge uneditable-input" name="nome_participante" type="text" placeholder="Name" value="<?php echo !empty($nome_participante)?$nome_participante:'';?>">
</div>
</div>
<div class="control-group">
<label class="control-label">Inscrição:</label>
<div class="controls">
<input autofocus name="inscricao" type="text" placeholder="Número Inscrição" value="<?php echo !empty($inscricao)?$inscricao:'';?>">
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-success">Submeter</button>
<a class="btn" href="index.php">Back</a>
</div>
</form>
</div>
</body>
</html>