[Addon] Tags [RevCMS]

Tash

Hi.
May 6, 2012
173
27
WAAH!
this is hard to install :/
could someone teach me how to install this.
this is abit hard to install and im confused.
it doesnt work D=
 

Adidas

Retro Developer
May 6, 2012
296
19
It's easy just copy and past where you want it to be. I think didn't read thread just post ;)
 

tyr0ne

Active Member
Mar 29, 2012
141
14
Instead of
PHP:
$do = $_GET['do'];
if($do != "") {
    mysql_query("DELETE FROM user_tags WHERE id = '".$do."'");
    Redirect("me");
}

you should do

PHP:
if( $_GET['do'] ) {
    $do = $_GET['do'];
    mysql_query("DELETE FROM user_tags WHERE id = '".$do."'");
    Redirect("me");
}
 

Tash

Hi.
May 6, 2012
173
27
It's easy just copy and past where you want it to be. I think didn't read thread just post ;)
Hey i tried , but it doesnt work :/
but should i put the html code first? right than php.
where should i put the php? below? :/
 

Users who are viewing this thread

Top