Jump to content
MakeWebGames

Help me with these please:


CraigF

Recommended Posts

In my admin panel i need:

Gang Edit - So i can edit gang Respect, Gang Money and Gang Crystals

AND

Shop Delete - so i can delete a shop

i know shop delete was around here somewhere but that was like months ago, i have searched and everything but couldnt find!

Please help me, these are for V1

Link to comment
Share on other sites

Re: Help me with these please:

I have had a try at Delete Shop using "delete item type" hehe, it should be ok i havent tried as i cant get access to a host for about another week because i havent bought one yet :D

i have done:

case 'killshop': kill_shop_form(); break;

case 'killshopsub': kill_shop_submit(); break;

For the case

AND

 

function kill_shop_form()

{

global $ir,$c,$h,$userid;

print "<h3><font color=white>Deleting Shop</h3><font color=white>

The shop type will be permanently removed from the game.

<font color=white>

<form action='admin.php?action=killshopsub' method='post'><font color=white>

Shop: ".shop_dropdown($c,"shop")."

<input type='submit' value='Kill Shop' /></form>";

}

function kill_shop_submit()

{

global $ir,$c,$h,$userid;

mysql_query("DELETE FROM shop WHERE shopid={$_POST['shop']}",$c);

print "The shop type was removed from the game.";

}

underneath that far down into admin.php

PLEASE tell me if its right or what i should change

and please help me do the gang edit aswell

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