if ($action == "") { $action = "modifycomments";}
$orderbyOptions = array( 'i.image_name' => $lang['field_image_name'], 'c.image_id' => $lang['image'] . ' ID', 'c.user_name' => $lang['field_username'], 'c.comment_headline' => $lang['field_headline'], 'c.comment_date' => $lang['field_date'],);
<select name="orderby"> <option value="i.image_name" selected><?php echo $lang['field_image_name'] ?></option> <option value="c.image_id" selected><?php echo $lang['image'] ?> ID</option> <option value="c.user_name"><?php echo $lang['field_username'] ?></option> <option value="c.comment_headline"><?php echo $lang['field_headline'] ?></option> <option value="c.comment_date"><?php echo $lang['field_date'] ?></option> </select>
<select name="orderby"> <?php foreach ($orderbyOptions as $field => $label): ?> <option value="<?php echo $field; ?>"><?php echo $label; ?></option> <?php endforeach; ?> </select>
$orderby = trim($HTTP_POST_VARS['orderby']); if ($orderby == "") { $orderby = "i.image_name";
$orderby = trim($HTTP_POST_VARS['orderby']); if (!isset($orderbyOptions[$orderby])) { $orderby = "i.image_name"; }
if (isset($HTTP_GET_VARS['direction']) || isset($HTTP_POST_VARS['direction'])) { $direction = (isset($HTTP_GET_VARS['direction'])) ? trim($HTTP_GET_VARS['direction']) : trim($HTTP_POST_VARS['direction']); } else { $direction = "ASC"; }
$direction = "ASC"; if (isset($HTTP_GET_VARS['direction']) || isset($HTTP_POST_VARS['direction'])) { $requestedDirection = (isset($HTTP_GET_VARS['direction'])) ? trim($HTTP_GET_VARS['direction']) : trim($HTTP_POST_VARS['direction']); if ('DESC' === $requestedDirection) { $direction = "DESC"; } }
if ($action == "") { $action = "modifyimages";}
$orderbyOptions = array( 'i.image_name' => $lang['field_image_name'], 'i.image_media_file' => $lang['field_image_file'], 'i.image_thumb_file' => $lang['field_thumb_file'], 'i.cat_id' => $lang['field_category'], 'i.image_date' => $lang['field_date'], 'i.image_downloads' => $lang['field_downloads'], 'i.image_rating' => $lang['field_rating'], 'i.image_votes' => $lang['field_votes'], 'i.image_hits' => $lang['field_hits'],);
<select name="orderby"> <option value="i.image_name" selected><?php echo $lang['field_image_name'] ?></option> <option value="i.image_media_file"><?php echo $lang['field_image_file'] ?></option> <option value="i.image_thumb_file"><?php echo $lang['field_thumb_file'] ?></option> <option value="i.cat_id"><?php echo $lang['field_category'] ?></option> <option value="i.image_date"><?php echo $lang['field_date'] ?></option> <option value="i.image_downloads"><?php echo $lang['field_downloads'] ?></option> <option value="i.image_rating"><?php echo $lang['field_rating'] ?></option> <option value="i.image_votes"><?php echo $lang['field_votes'] ?></option> <option value="i.image_hits"><?php echo $lang['field_hits'] ?></option> </select>
$orderby = trim($HTTP_POST_VARS['orderby']); if ($orderby == "") { $orderby = "i.image_name"; }
<body onload="start_animation()">
<body onLoad="start_animation()">
if ($action == "") { $action = "modifyusers";}
$orderbyOptions = array( get_user_table_field("", "user_name") => $lang['field_username'], get_user_table_field("", "user_email") => $lang['field_email'], get_user_table_field("", "user_joindate") => $lang['field_joindate'], get_user_table_field("", "user_lastaction") => $lang['field_lastaction'],);
<select name="orderby"> <option value="<?php echo get_user_table_field("", "user_name"); ?>" selected><?php echo $lang['field_username']; ?></option> <option value="<?php echo get_user_table_field("", "user_email"); ?>"><?php echo $lang['field_email']; ?></option> <option value="<?php echo get_user_table_field("", "user_joindate"); ?>"><?php echo $lang['field_joindate']; ?></option> <option value="<?php echo get_user_table_field("", "user_lastaction"); ?>"><?php echo $lang['field_lastaction']; ?></option> </select>
$orderby = trim($HTTP_POST_VARS['orderby']); if ($orderby == "") { $orderby = get_user_table_field("", "user_name"); }
$orderby = trim($HTTP_POST_VARS['orderby']); if (!isset($orderbyOptions[$orderby])) { $orderby = get_user_table_field("", "user_name"); }
if (isset($HTTP_GET_VARS['orderby']) || isset($HTTP_POST_VARS['orderby'])) { $orderby = (isset($HTTP_GET_VARS['orderby'])) ? stripslashes(trim($HTTP_GET_VARS['orderby'])) : stripslashes(trim($HTTP_POST_VARS['orderby'])); } else { $orderby = "i.image_date"; }
$orderbyOptions = array( 'i.image_name' => $lang['field_image_name'], 'i.cat_id' => $lang['field_category'], 'i.image_date' => $lang['field_date'], get_user_table_field("u.", "user_name") => $lang['field_username'] ); $orderby = "i.image_date"; if (isset($HTTP_GET_VARS['orderby']) || isset($HTTP_POST_VARS['orderby'])) { $requestedOrderby = (isset($HTTP_GET_VARS['orderby'])) ? stripslashes(trim($HTTP_GET_VARS['orderby'])) : stripslashes(trim($HTTP_POST_VARS['orderby'])); if (isset($orderbyOptions[$requestedOrderby])) { $orderby = $requestedOrderby; } }
<select name="orderby"> <option value="i.image_name" selected><?php echo $lang['field_image_name'] ?></option> <option value="i.cat_id"><?php echo $lang['field_category'] ?></option> <option value="i.image_date"><?php echo $lang['field_date'] ?></option> <option value="<?php echo get_user_table_field("u.", "user_name"); ?>"><?php echo $lang['field_username'] ?></option> </select>
define('SCRIPT_VERSION', '1.7.13');
define('SCRIPT_VERSION', '1.8');
function Db($db_host, $db_user, $db_password = "", $db_name = "", $db_pconnect = 0) {
function __construct($db_host, $db_user, $db_password = "", $db_name = "", $db_pconnect = 0) {
$this->error("Could not connect to the database server ($db_host, $db_user).", 1);
$this->error("Could not connect to the database server (".safe_htmlspecialchars($db_host).", ".safe_htmlspecialchars($db_user).").", 1);
$this->error("Could not select database ($db_name).", 1);
$this->error("Could not select database (".safe_htmlspecialchars($db_name).").", 1);
return $this->connection; } function escape($value) { return mysql_real_escape_string($value, $this->connection); }
mysql_set_charset('utf8', $this->connection); return $this->connection; } function escape($value) { return mysql_real_escape_string($value, $this->connection); }
$this->error("<b>Bad SQL Query</b>: ".htmlentities($query)."<br /><b>".mysql_error()."</b>");
$this->error("<b>Bad SQL Query</b>: ".safe_htmlspecialchars($query)."<br /><b>".safe_htmlspecialchars(mysql_error())."</b>");
function Email() {
function __construct() {
global $config;
global $lang;
return $header; }
$header .= "Content-Type: text/plain; charset=" . strtolower($lang['charset']) . "\r\n"; return $header; }
if ($csrf_protection_enable && $csrf_protection_frontend) { csrf_start(true);}
if (!headers_sent()) { header('Content-Type: text/html;charset=' . $lang['charset'], true);}
function Paging($page = 1, $perpage = 0, $num_rows_all = 0, $link_args = "") {
function __construct($page = 1, $perpage = 0, $num_rows_all = 0, $link_args = "") {
function Session() {
function Template($template_path = "") {
function __construct($template_path = "") {
function Upload() {
function Zipfile($level = 9) {
function __construct($level = 9) {
$lang['charset'] = "iso-8859-1";
$lang['charset'] = "UTF-8";
Fatal error: Call to undefined function imagecreatefromjpeg() in /public_html/includes/image_utils.php on line 78
imagecreatefromjpeg