Jump to content

[SOLVED] Report Button Code Error


everlifefree

Recommended Posts

Ok I have a report button on several pages that uses this php code:

 

elseif (isset($_GET["mode"]) and $_GET["mode"] == "rp") {

$select = myQ(" UPDATE `[x]gallery` SET `isbroken` = '1' WHERE `id` = '{$_GET["id"]}' ");

$select = myQ("

SELECT SQL_CALC_FOUND_ROWS *

FROM `[x]gallery`

WHERE `processed` = '1'

ORDER BY `date` DESC

LIMIT ".(($page * $CONF["EZINE_SEARCH_RESULTS_PER_PAGE"]) - $CONF["EZINE_SEARCH_RESULTS_PER_PAGE"]).",{$CONF["EZINE_SEARCH_RESULTS_PER_PAGE"]}

");

}

 

but when I tried to add it to a different page that doesn't have all the other get things before it. It doesn't work. Here the coded I changed it to and added.

 

if (isset($_GET["mode"]) and $_GET["mode"] == "rp") {

$select = myQ(" UPDATE `[x]users` SET `isbroken` = '1' WHERE `id` = '{$_GET["id"]}' ");

");

}

 

 

Anybody know the correct way I could add this and have it work with out the extra?

Link to comment
Share on other sites

Ok I have a report button on several pages that uses this php code:

elseif (isset($_GET["mode"]) and $_GET["mode"] == "rp") {
$select = myQ(" UPDATE `[x]gallery` SET `isbroken` = '1' WHERE `id` = '{$_GET["id"]}' ");
$select = myQ("
		SELECT SQL_CALC_FOUND_ROWS *
		FROM `[x]gallery` 
		WHERE `processed` = '1'
		ORDER BY `date` DESC
		LIMIT ".(($page * $CONF["EZINE_SEARCH_RESULTS_PER_PAGE"]) - $CONF["EZINE_SEARCH_RESULTS_PER_PAGE"]).",{$CONF["EZINE_SEARCH_RESULTS_PER_PAGE"]}
");
}

 

but when I tried to add it to a different page that doesn't have all the other get things before it. It doesn't work. Here the coded I changed it to and added.

elseif (isset($_GET["mode"]) and $_GET["mode"] == "rp") {
$select = myQ(" UPDATE `[x]users` SET `isbroken` = '1' WHERE `id` = '{$_GET["id"]}' ");
}

 

Anybody know the correct way I could add this and have it work with out the extra?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.