CoRnNuB Posted March 16, 2011 Posted March 16, 2011 lets say on my donater.php i had these buy will potions all wills behind here buy brave potions all braves behind here buy full restores all restores behind here buy randomizers all randomizers behind here buy donator packs all dps behind this link how easy would it be too code something like this and how long would it take Quote
Maniak Posted March 17, 2011 Posted March 17, 2011 switch($_GET['type']) { case 'willPotions': will_potions(); break; the same for all the others; break; default: dontion_index(); break; } function donation_index() { > Will Potions > All other Types List all basic donations here.. } function will_potions() { > Will Potions > All other Types List all will potions here.. } Yeah, it's a shit example.. But you get the idea? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.