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
https://forums.phpfreaks.com/topic/86063-solved-report-button-code-error/
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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.