Jump to content

Weird Problem


craigory83

Recommended Posts

Okay, so basically my news-like site is supposed to print out article data saved in the database.  It does that quite alright, except on the 3rd article (number 2 in SQL rows or columns.  whichever it is.  I have my counter subtract 1 from the start article to compensate for MySQL)

 

My code:

<?php
print "<div class = 'menu' align='center'>Newest Stories</div>";

if (isset($_REQUEST['mstart']))
{
$start=$_REQUEST['mstart'];
}
else
{
$start=1;
}
if ($start)
{
$start=1;
}

$start--;
$end=$start+5;
$stories = mysql_query("SELECT * FROM stories ORDER BY id DESC LIMIT $start, $end") or die(mysql_error());
$num = mysql_num_rows($stories);
$start++;

if ($num > 0)
{
if ($num<$end)
{
		$end = $end-(5-$num);
}
print "<b><i>Showing stories $start to $end</i></b>";



for ($count=0; $count<$num; $count++)
{
	print "<hr>";	
	$story = mysql_fetch_array($stories,$count);
	$id = $story['id'];
	$headline = $story['headline'];
	$author = $story['author'];
	$desc = $story['description'];
	$content = $story['content'];

			print "COUNT: $count OF $num ($id)<br>";
	print "<a href='index.php?request=story&mstart=$start&story=$id' class='headlinelink'>$headline</a><br>";
	print "<div class='author'>Posted by: <a href='index.php?request=author&mstart=$start&author=$author' class='author'>$author</a>.</div>";
	print "<div class='desc'>$desc</div><br>";
}

}
else
{
print "Error.  No stories found. ";
}

?>

 

Output: (The COUNT x OF y was to help me figure out what is wrong.  In the () by it is the id number of the corresponding MySQL row/column.  I even deleted one of the articles to see if it was a specific article error.  No luck.)

 

  Quote

Newest Stories

Showing stories 1 to 5

----------------

COUNT: 0 OF 5 (6)

Y U NO STAY

Posted by: craigory83.

GRRR

 

----------------

COUNT: 1 OF 5 (5)

h-l!

Posted by: craigory83.

desc

 

----------------

Notice: Undefined index: id in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dba\menu.php on line 37

 

Notice: Undefined index: headline in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dba\menu.php on line 38

 

Notice: Undefined index: author in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dba\menu.php on line 39

 

Notice: Undefined index: description in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dba\menu.php on line 40

 

Notice: Undefined index: content in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dba\menu.php on line 41

COUNT: 2 OF 5 ()

 

Posted by: .

 

----------------

COUNT: 3 OF 5 (2)

This is the second story!

Posted by: TDWP83.

See, I fuckin told you so!

 

 

Warning: mysql_fetch_array() [function.mysql-fetch-array]: The result type should be either MYSQL_NUM, MYSQL_ASSOC or MYSQL_BOTH in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dba\menu.php on line 36

 

----------------

COUNT: 4 OF 5 (1)

This is the mother fucking headline!

Posted by: craigory83.

stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff

Link to comment
https://forums.phpfreaks.com/topic/231470-weird-problem/
Share on other sites

You're using mysql_fetch_array wrong.  The second argument is result type (ie associative or numerical) rather than the row to retrieve.  Try something like this.

while ($story = mysql_fetch_array($stories)) 
{
    //Print your article.
}

See mysql_fetch_array for more info.

Link to comment
https://forums.phpfreaks.com/topic/231470-weird-problem/#findComment-1191194
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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