forked from science-ation/science-ation
fair info database completed
This commit is contained in:
parent
325340159d
commit
b8a393f0f0
@ -72,13 +72,13 @@ switch (get_value_from_array($_GET, 'action')) {
|
|||||||
$enable_awards = ($_POST['enable_awards'] == 'yes') ? 'yes' : 'no';
|
$enable_awards = ($_POST['enable_awards'] == 'yes') ? 'yes' : 'no';
|
||||||
$enable_winners = ($_POST['enable_winners'] == 'yes') ? 'yes' : 'no';
|
$enable_winners = ($_POST['enable_winners'] == 'yes') ? 'yes' : 'no';
|
||||||
|
|
||||||
$q = $pdo->prepare("UPDATE contacts SET name = $name, abbrv = '$abbrv', url = '$url', website='$website',
|
$q = $pdo->prepare("UPDATE contacts SET name =?, abbrv =?, url =?, website=?,
|
||||||
type='$type' , username='$username',
|
type=? , username=?,
|
||||||
password='$password',
|
password=?,
|
||||||
enable_stats='$enable_stats',
|
enable_stats=?,
|
||||||
enable_awards='$enable_awards',
|
enable_awards=?,
|
||||||
enable_winners='$enable_winners' WHERE id = $id");
|
enable_winners=? WHERE id =?");
|
||||||
$q->execute([$name, $age, $email, $id]);
|
$q->execute([$name, $abbrv, $url, $website, $type, $username, $password, $enable_stats, $enable_awards, $enable_winners, $age, $email, $id]);
|
||||||
|
|
||||||
$u['fairs_id'] = $id;
|
$u['fairs_id'] = $id;
|
||||||
user_save($u);
|
user_save($u);
|
||||||
@ -130,8 +130,8 @@ function fairinfo_save()
|
|||||||
|
|
||||||
<?
|
<?
|
||||||
/* Load the fair info */
|
/* Load the fair info */
|
||||||
$q = $pdo->prepare('SELECT * FROM fairs WHERE id=' . $u['fairs_id'] . '');
|
$q = $pdo->prepare('SELECT * FROM fairs WHERE id=?');
|
||||||
$q->execute();
|
$q->execute([$u['fairs_id']]);
|
||||||
|
|
||||||
if ($q->rowCount() != 0) {
|
if ($q->rowCount() != 0) {
|
||||||
$f = $q->fetch();
|
$f = $q->fetch();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user