PHP - MySQL Fail


Posted on 16th Feb 2014 07:03 pm by admin

My PHP code will only execute the first part of my code...

Code: <?php

session_start();

?>

<html>

<head>

<title> Create a Character</title>

<style type="text/css">

body{

background-color: #000;

font-family: Arial, Tahoma;

font-size: .78em;

}

fieldset{

padding: 10px;

margin: 10px;

border: 1px solid #57626B;

width: 70%;

float: left;

}

legend{

background-color: #6A8CA5;

border: 1px solid #000;

padding: 5px;

}

input{

font-style: italic;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;

}


#tester{

background-color: #333;

margin: 0 auto;

padding: 10px;

width: 70%;

height: 80%;

}

#stats{

float: left;

width: 25%;

font-style: italic;

color: #000;

padding: 5px;

border: 1px dashed #999;

}

</style>



</head>

<body>

<div id="tester">



<?php

//Creation script designed by Cetanu of http://mythscape.freezoka.com and http://tehfreerpg.proboards.com

//This script is licensed by the Creative Commons for: Sharing, Attribution, Non-derivative, and non-commercial.

//You MUST leave these notices in for LEGAL use of this script. YOU MAY NOT EDIT THIS SCRIPT LEGALLY.

//For more: http://creativecommons.org/licenses/by-nc-nd/3.0/us/



if(empty($_SESSION['user_id'])){

die("<strong>You are not logged in. Please do so to access the RPG Sector.</strong>");

}

if(empty($_POST['cont'])){



echo " Time to create your character!<br/>

<form action='create.php' method='post'>

<fieldset>

<legend>Create Character for <strong>".$_SESSION['user_id']."</strong></i></u></legend>

<p>Please choose a species.</p>



<input type='radio' name='Species' id='pred' value='Predator'/>Predator (Yautja)<br/>

<input type='radio' name='Species' id='alien' value='Alien'/>Alien (Xenomorph)<br/>

<input type='radio' name='Species' id='human' value='Marine'/>Marine<br/> <br/>



<label for='name'>Character Name</label>

<input type='text' maxlength='25' id='name' name='name'/><br/>



<input type='hidden' maxlength='30' value='{$_SESSION['user_id']}' id='player' name='player' readonly='readonly'/><br/>





<input type='submit' name='cont' id='cont' value='Continue On'/>



</fieldset>

</form>";

}

echo "<br/>";

if(!empty($_POST['cont'])){

$species = $_POST['species'];
include "db.php";

if(empty($_POST['name']) || empty($_POST['Species'])){

echo "<script>document.write('You must input a species and a name!'); setTimeout("window.location.reload()", 350);</script>";

}



if ($species== "Predator" || "Alien" || "Marine" && !empty($_POST['name'])){


mysql_query("INSERT INTO rpg (name, species, player) VALUES ('{$_POST['name']}' , '{$_POST['Species']}' , '{$_POST['player']}')")

or die(mysql_error());
}


elseif($species=="Predator"){

mysql_query("UPDATE rpg SET max_health=25, health=25, attack=25, defense=25, honor=20 WHERE player='{$_POST['player']}')");

}

elseif($species=="Alien"){

mysql_query("UPDATE rpg SET health=20, max_health=20, attack=20 , defense=20 , stealth=20 WHERE player='{$_POST['player']}");

}

elseif($species=="Marine"){

mysql_query("UPDATE rpg SET health=15, max_health=15 , attack=20 , defense=20 , melee=20 WHERE player='{$_POST['player']}");

}

else{

echo "Invalid Species. Try again!";

}
mysql_query("INSERT INTO bank (player , amount) VALUES('{$_SESSION['user_id']}' , 5)");



header('Location: statadd.php');




}



?>





</div>





</body>



</html>
The part starts here...When it gets to the three elseif statements, they are the only things that won't execute. Everything else works. I don't get errors.
Code: <?php

if(!empty($_POST['cont'])){

$species = $_POST['species'];
include "db.php";

if(empty($_POST['name']) || empty($_POST['Species'])){

echo "<script>document.write('You must input a species and a name!'); setTimeout("window.location.reload()", 350);</script>";

}



if ($species== "Predator" || "Alien" || "Marine" && !empty($_POST['name'])){


mysql_query("INSERT INTO rpg (name, species, player) VALUES ('{$_POST['name']}' , '{$_POST['Species']}' , '{$_POST['player']}')")

or die(mysql_error());
}


elseif($species=="Predator"){

mysql_query("UPDATE rpg SET max_health=25, health=25, attack=25, defense=25, honor=20 WHERE player='{$_POST['player']}')");

}

elseif($species=="Alien"){

mysql_query("UPDATE rpg SET health=20, max_health=20, attack=20 , defense=20 , stealth=20 WHERE player='{$_POST['player']}");

}

elseif($species=="Marine"){

mysql_query("UPDATE rpg SET health=15, max_health=15 , attack=20 , defense=20 , melee=20 WHERE player='{$_POST['player']}");

}

else{

echo "Invalid Species. Try again!";

}
mysql_query("INSERT INTO bank (player , amount) VALUES('{$_SESSION['user_id']}' , 5)");



header('Location: statadd.php');




}
?>

No comments posted yet

Your Answer:

Login to answer
157 Like 10 Dislike
Previous forums Next forums
Other forums

Am I setting up my sites oldschool?
Ok,

When I create a site I open a basic template that I have created that consists of a css f

ALV List display - header width adjust
Hi,

I am using REUSE_ALV_LIST_DISPLAY for my ALV display.The width of the ALV varies for

small inaccuracies
I have this code to convert fractional base 10 into base 2:

while($num > 0)

Warning message
I've put a website that I was doing live and I'm getting this warning message when I try to add a ne

How to generate a random array of integers subject to a certain constraint
I am writing a program that asks the user to enter an integer N and then generates a random array of

Error in query: Resource id #4??
hey guys, having a minor (i think) problem here that i havent been able to figure out. long story sh

Anti Spam Code Problems
Ok where do i start? Probably by telling you I have very little working knowledge of PHP and that I

Need help with basic sql
Hi,

I am using oracle 10g, and having some small doubts related to sql , here goes the si

Socket problem
Hello,

Earlier I posted about my problem with my socket script. It took up to 100% CPU usage.

show random images
hey guys

can someone please suggest a way in which the following code can be edited so it onl

Sign up to write
Sign up now if you have flare of writing..
Login   |   Register
Follow Us
Indyaspeak @ Facebook Indyaspeak @ Twitter Indyaspeak @ Pinterest RSS



Play Free Quiz and Win Cash