Question : PHP/MySQL Issue

Hi,

For some reason, when using the below code/query, I only get one result in my var_dump of $array (ive included this below).

To see the DB, see here: http://i40.tinypic.com/2e6a5o4.jpg it's a screen shot of the phpmyadmin layout, as you can see there are four there all of which have dates after today. why does my code not see the other 3?

The purpose of this function is to output anything that is show after today (IE the timestamp in EP_AIRDATE is after today or it is today).

Thanks for any help
Billy
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
function ep_latestt($showid){
	
	/* Function to bring back an array of latest show information */
	
	mysql_connect(config(dbserver),config(dbusername),config(dbpassword));
	mysql_select_db(config(dbname));
	
	if(isset($showid) && is_numeric($showid)){
		
		$query = "SELECT * FROM SHOWINFO WHERE SHOW_ID = '".$showid."'";
		$result = mysql_query($query)or die(mysql_error().$query);
		
		if(mysql_num_rows($result) == 1){ 	
		
			//$query "SELECT * FROM EPLIST WHERE SHOW_ID = '".$showid."'";
			$query = "SELECT * FROM EPLIST WHERE SHOW_ID = '".$showid."' AND EP_AIRDATE >= unix_timestamp(CURDATE())";
			$result = mysql_query($query)or die(mysql_error().$query);
			
			$array = mysql_fetch_array($result);
			var_dump($array);
		}
	}
}
 
==========
 
The array that outputs is:
 
array(22) {
  [0]=>
  string(3) "405"
  ["ID"]=>
  string(3) "405"
  [1]=>
  string(4) "2445"
  ["SHOW_ID"]=>
  string(4) "2445"
  [2]=>
  string(3) "169"
  ["EP_ID"]=>
  string(3) "169"
  [3]=>
  string(16) "Day 8: Episode 1"
  ["EP_NAME"]=>
  string(16) "Day 8: Episode 1"
  [4]=>
  string(1) "8"
  ["EP_SEASON"]=>
  string(1) "8"
  [5]=>
  string(10) "1263686400"
  ["EP_AIRDATE"]=>
  string(10) "1263686400"
  [6]=>
  string(44) "http://www.tvrage.com/24/episodes/1064812687"
  ["EP_LINK"]=>
  string(44) "http://www.tvrage.com/24/episodes/1064812687"
  [7]=>
  string(53) "[There is no summary added for this episode]
	»"
  ["EP_SYN"]=>
  string(53) "[There is no summary added for this episode]
	»"
  [8]=>
  string(28) "images/epimages/2445.169.jpg"
  ["EP_PIC"]=>
  string(28) "images/epimages/2445.169.jpg"
  [9]=>
  string(21) "vids/eps/2445.169.flv"
  ["EP_VID"]=>
  string(21) "vids/eps/2445.169.flv"
  [10]=>
  string(5) "08x01"
  ["EP_NUM"]=>
  string(5) "08x01"
}
Open in New Window Select All

Answer : PHP/MySQL Issue

mysql_fetch_array() will only fetch one row. You must use it in a loop to fetch all found rows. Replace line 19 with this:
1:
2:
3:
$array = array();
while($row = mysql_fetch_array($result))
  $array[] = $row;
Open in New Window Select All
Random Solutions  
 
programming4us programming4us