Jump to content
MakeWebGames

[mccode] [TGM] Delete Gang Option [TGM]


Cronus

Recommended Posts

Delete Gang Option

Created By: Cronus

Presidents of gangs can completely disband their gang with the simple click of a button

This is to prevent someone buying a gang, changing their mind about wanting to run one and not being stuck in it until they can get someone to take the president spot.

killgang.jpg

Price:

FREE

Click here to download.

Link to comment
Share on other sites

  • 1 month later...
  • 2 months later...
  • 4 weeks later...

Re: [mccode] [TGM] Delete Gang Option [TGM]

 

i only use dreamweaver if im designing something so i can see what im doing cause i hate doing things basically blind folded.

either macromedia dreamwevaer, notepad, wordpad

 

The human race has just fallen. how! what! why!!

Dreamweaver equals invalid XHTML markup.

Link to comment
Share on other sites

  • 4 months later...

Re: [mccode] [TGM] Delete Gang Option [TGM]

dunno why but this fails to work for me...

i dunno exactly what to put in the yourgang staff section etc.

i posted the a href="douwanna.php but i dunno what i'm doin wrong... (yes i did the full <a href code)

Link to comment
Share on other sites

Re: [mccode] [TGM] Delete Gang Option [TGM]

Just a quick question, I lost my old mysql.php file and I put it like this in the file.

 

<?

$c=mysql_connect('localhost','Passwordhere' or die(mysql_error());

mysql_select_db('DBhere',$c);

?>

Then I get Parse error: syntax error, unexpected ';' in /home/gurpreet/public_html/mysql.php on line 3

Sorry to be noobish but I lost all my knowledge of this stuff. BTW it's to do with this mod as I need it for douwanna.php

Link to comment
Share on other sites

  • 3 months later...

Re: [mccode] [TGM] Delete Gang Option [TGM]

 

Just a quick question, I lost my old mysql.php file and I put it like this in the file.

 

<?

$c=mysql_connect('localhost','Passwordhere' or die(mysql_error());

mysql_select_db('DBhere',$c);

?>

Then I get Parse error: syntax error, unexpected ';' in /home/gurpreet/public_html/mysql.php on line 3

Sorry to be noobish but I lost all my knowledge of this stuff. BTW it's to do with this mod as I need it for douwanna.php

This...

<?

$c=mysql_connect('localhost','Passwordhere' or die(mysql_error());

mysql_select_db('DBhere',$c);

?>

Should be this...

<?

$c=mysql_connect('localhost','Passwordhere') or die(mysql_error());

mysql_select_db('DBhere',$c);

?>

I think... just off the top of my head that's what I see.

Link to comment
Share on other sites

Re: [mccode] [TGM] Delete Gang Option [TGM]

<?

$c=mysql_connect('localhost','Passwordhere') or die(mysql_error());

mysql_select_db('DBhere',$c);

?>

is wrong it should have a DB user int here so like this

 

<?

$c=mysql_connect('localhost','lur db user','db user pass') or die(mysql_error());

mysql_select_db('db name',$c);

?>

Link to comment
Share on other sites

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.   Paste as plain text instead

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