Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is how I echo the data from database:

<?php

//check id to display
if ($playerID = 1) {
  echo "<p class=\"playerInfoL\"> $player_bio </p> <p class=\"playerAchievesL\"> $achievements</p>";
}
else{
  return false;
}

?>

And here is how I defined the variable ...

<?php

session_start();

require_once('config.php');

//create query statement
$query = 'SELECT * FROM player_info';

//make the query from db
$myData = mysql_query($query, $conn)
OR exit('Unable to select data from table');

if(isset($_GET['action'])) {
  $playerID                 = $_GET['id'];
  $player_bio           = $_GET['player_bio'];
  $achievements             = $_GET['player_achts'];
}
?>

I'm a beginner ... i dunno what or how i did wrong ... any help please?

share|improve this question
Where specifically is the error thrown? What's the error message? Also, why is this on two pages? – eykanal Aug 12 '11 at 19:45
We can only guess unless you tell us the errors you recieved – Gerry Aug 12 '11 at 19:45
1  
What is the error message that you get? Also, I think you have a typo in there: if ($playerID = 1) should be if ($playerID == 1) – Jimmy Stenke Aug 12 '11 at 19:46
3  
Wasn't this resolved for you here? stackoverflow.com/questions/7044685/… – Jason Fuller Aug 12 '11 at 19:50
show 8 more comments

5 Answers

You want to compare, not assign:

if ($playerID == 1)
share|improve this answer
thanks so much... – pdnaia Aug 12 '11 at 21:03

change

                         if ($playerID = 1)

to

                         if ($playerID == 1)

that first actually only "changes" value of $playerID and does not do what are you looking for

share|improve this answer
1  
if a variable is undefined, just changing the assignment to a compare still leaves the variable undefined... – Arjan Aug 12 '11 at 19:50

You are defining $playerID and $player_bio only if there is $_GET['action'] set (and if there is $_GET['id']) You can use if (isset($playerID) && $playerID == 1)

share|improve this answer
1  
It actually is easier to always have the variable defined, for example by having a $playerID = NULL; in the beginning. – Shi Aug 12 '11 at 19:50
thank you all much, i'm trying every one's solution now – pdnaia Aug 12 '11 at 21:06

I think you're confusing $_GET data (that can be sent through a URL) with the data returned from your mysql_query call (which still needs to be retrieved). After your mysql_query line, try this:

$row = mysql_fetch_array($myData, MYSQL_ASSOC)

if(isset($_GET['action']) && $row) {
    $playerID               = $row['id'];
    $player_bio             = $row['player_bio'];
    $achievements           = $row['player_achts'];
}
share|improve this answer
thank you so much for the help... however, it now give me error of variable playerID is undefined... could you help me? Thanks – pdnaia Aug 12 '11 at 21:01
Check out Darhazer's answer - You should check for the $playerID variable using if (isset($playerID) && $playerID == 1). – mopsled Aug 12 '11 at 21:12

As others have answered, you should change your test to properly compare the variable in the "if":

if($playerId == 1)

But also I am guessing that you do not expect to gain the player info from your $_GET variables, and therefore expect to retrieve them from the DB you are querying. Here is how that should be done:

if(isset($myData))
{
    $record = mysql_fetch_array($myData, MSQL_ASSOC);

    $playerID               = $record['id'];
    $player_bio             = $record['player_bio'];
    $achievements           = $record['player_achts'];
}
share|improve this answer
I see mopsled already posted the DB part of my answer cuz I was slow getting it out there. Good luck with your project. – Adam Culp Aug 12 '11 at 20:15
thank you much for the help... but how come now it say the variable playerID is undefined... do you have any idea? Thanks – pdnaia Aug 12 '11 at 21:02
You would need to somehow define it. For instance you could pass it in a URL like so (domain.com?id=1) then you could try to capture it like so (if($_GET['id'] == 1)) – Adam Culp Aug 12 '11 at 21:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.