Jump to content
MakeWebGames

Recommended Posts

Posted

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.

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

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

 

wassap whats the program u use to look at it! :mrgreen:

LMFAO

the stage this human is going through is called three stages before class: N00b

and can be cured....by taking time and thinking straight

Posted

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.

  • 4 months later...
Posted

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)

Posted

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

  • 3 months later...
Posted

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

 

Its ashame they encourage people in web dev to use dreamweaver in college.

Notepad++ > All

Woooooo go Notepad++ i like the bright colours xD, seems to help me :L

Posted

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.

Posted

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);

?>

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