Error in query: Resource id #4??
Posted on
16th Feb 2014 07:03 pm by
admin
hey guys, having a minor (i think) problem here that i havent been able to figure out. long story short, im building a hockey stat tracking site for a local hockey league around here.
my problem is, i am trying to run a query using php, but the value getting returned is Resource id #4 instead of what it is supposed to be. i read around and found people saying you need to use mysql_fetch_array, which is what i am doing. let me start by posting my code:
Code: <?php
$querystats = mysql_query('SELECT * FROM stats ORDER BY team_id');
$statsresult = mysql_query($querystats);
if (!$statsresult) {
exit ('<p>Error in query.'. mysql_error().'</p>');
}
while($row = mysql_fetch_array($statsresult)) {
echo $row['team_id'];
print_r($team_id);
$querystandings = mysql_query('SELECT * FROM standings ORDER BY points DESC');
if (!$querystandings) {
exit ('<p>Error in query.'. mysql_error().'</p>');
}
while ($row = mysql_fetch_array($querystandings)) {
echo('<tr><td>' . '<a href="teams.php?team_id='.$row['team_id'].'"> ' . $row['team'] . '</a></td><td>' . $row['games_played'] . '</td><td>' . $row['wins'] . '</td><td>' . $row['losses'] . '</td><td>' . $row['ties'] . '</td><td>' . $row['points'] . '</td></tr>');
}
}
?>
i believe the problem is the $querystats. here's what my table structure looks like:
here's a link to my site:
http://gamera.caset.buffalo.edu/~sstoveld/DMS315/projects/final/standings.php
you can login with: username: test password: test
the problem is on the standings page, if you hover over a team name and look at where the link directs to, it ends with team_id=
i need to get the proper team_id in the link, which is where im hoping someone can help me. ive been looking through this trying many different things that i cant seem to get to work.
if my above code is completely wrong with using the $querystats query, how can i get this to work.
originally the $querystats query wasnt there, and only the $querystandings query was being used, but the links wouldnt work because i am not selecting the team_id from the stats table. when i modify the $querystandings query to left join on stats, the loop goes through and adds about 25 entries per team, which is not what i want.
if you need any more info, please ask, i cant figure this out
No comments posted yet
Your Answer:
Login to answer
216
41
Other forums
C problem struct and string
Hi guys,
This is my first post and I'm hoping the experts here can help me solve my problem.<
PHP - HTTP Digest Authentication - Understanding Code Help
Hi Everyone,
This is my first time on your website and please excuse if I am asking silly que
PHP Redirecting
Hello everyone. Is there a way to redirect people to pages within a statement in PHP? Since there is
DateTimeZone::listIdentifiers headache
http://php.net/manual/en/datetimezone.listidentifiers.php
So the documentation states tha
Help a newbee save my job !
Hey guys i am dying here i am new to php and would like for someone to help me with this problem
Website Direction...
I recently used this code to try and make it so the page loads as http://www.domain.com/ when you ty
Logging and nologging bulk insert
Hi,
oracle version: 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
Tournament Brackets (Double Elimination)?
Is making a double elimination tournament style bracket system capable of being done in php?
ereg_replace issue
hi there people
i have this code happening with regards to my wamp server. is this something
disable all input buttons
Hello Friends,
suppose i do have a file ( file.php ) has a submit button
Code: [Sele