Jump to content

[SOLVED] only adding one.


grlayouts

Recommended Posts

The script below should insert into the database one factory on the drop down as long as the player has cash. However its only working on the drug one not the steak house.

 

any idea's?

 

<? print "<form method=post action=enterprises.php?view=add&step=add>Build  <select name=building><option value=DrugFactory>Drug Factory</option><option 	value=SteakHouse>Steak House</option><option 	value=CarLot>Car Lot</option><option 	value=Passport>Passport</option></select>. <input type=submit value=Add></form>";
if ($step == add) {
if ($building == 'DrugFactory') {
if ($stat[credits] <30000) {
print "Sorry mate, you don't have the cash.";
} else {
	mysql_query("update players set drugfact=drugfact+1 where id=$stat[id]");
		print "Building added."; }}}
	 else {
if ($building == 'SteakHouse') {
if ($stat[credits] <60000) {
print "Sorry mate, you don't have the cash.";
} else {
	mysql_query("update players set steakhouse=steakhouse+1 where id=$stat[id]");
		print "Building added."; }}}?>

Link to comment
Share on other sites

Your statements (opening and closing curly brackets) are a bit messed up:

 

that code will never enter to checking for 'steakhouse' if the $step == 'add'

 

btw. using e.g. switch-case statement would be cleaner and you would better avoid errors like such

 

 

Link to comment
Share on other sites

Does the screen show either "Sorry mate, you don't have the cash." or "Building added." when you try to make a steak house, or is the screen blank?

 

i get nothing..

 

what would you suggest?

What LazyJones suggested seems right. Thats why I asked what you expected the $step variable to equal when you wanted to add a steakhouse, because he is right, it will never get down there if $step == add

Link to comment
Share on other sites

<?php
print "<form method=post action=enterprises.php?view=add&step=add>Build  <select name=building><option value=DrugFactory>Drug Factory</option><option 	value=SteakHouse>Steak House</option><option 	value=CarLot>Car Lot</option><option 	value=Passport>Passport</option></select>. <input type=submit value=Add></form>";
if ($step == "add") 
{
switch($building)
{
	case "DrugFactory":
		if ($stat[credits] < 30000) {
			print "Sorry mate, you don't have the cash.";
		} else {
			mysql_query("update players set drugfact=drugfact+1 where id=$stat[id]");
			print "Building added."; 
		}
	break;
	case "SteakHouse":
		if ($stat[credits] < 60000) {
			print "Sorry mate, you don't have the cash.";
		} else {
			mysql_query("update players set steakhouse=steakhouse+1 where id=$stat[id]");
			print "Building added."; 
		}
	break;
}
}
?>

Try something like that

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.