$id = bigintval($id);
// Update entry
- SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_prices` SET rallye_id=%s, price_`level`='%s', points='%s', info='%s' WHERE `id`=%s LIMIT 1",
- array(
- postRequestElement('rallye_id', $id),
- bigintval($level),
- postRequestElement('points', $id),
- postRequestElement('infos', $id),
- $id
- ), __FILE__, __LINE__);
+ SQL_QUERY_ESC("UPDATE
+ `{?_MYSQL_PREFIX?}_rallye_prices`
+SET
+ `rallye_id`=%s,
+ `price_`level``='%s',
+ `points`='%s',
+ `info`='%s'
+WHERE
+ `id`=%s
+LIMIT 1",
+ array(
+ postRequestElement('rallye_id', $id),
+ bigintval($level),
+ postRequestElement('points', $id),
+ postRequestElement('infos', $id),
+ $id
+ ), __FILE__, __LINE__);
}
// Output message
$content = array(
'sw' => $SW,
'id' => $id,
- 'rallyes' => generateOptionList("rallye_data", 'id', "title", $rallye),
+ 'rallyes' => generateOptionList('rallye_data', 'id', 'title', $rallye),
'level' => $level,
'points' => $points,
'infos' => $infos,
$OUT = ''; $SW = 2;
foreach (postRequestElement('sel') as $id => $sel) {
// Load data to selected rallye
- $result = SQL_QUERY_ESC("SELECT rallye_id, price_level, points, info FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `id`=%s LIMIT 1",
+ $result = SQL_QUERY_ESC("SELECT `rallye_id`, `price_level`, `points`, `info` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `id`=%s LIMIT 1",
array(bigintval($id)), __FILE__, __LINE__);
list($rallye, $level, $points, $infos) = SQL_FETCHROW($result);
SQL_FREERESULT($result);