Jump to content

Grabbing a variable from within the same file


monkeybidz

Recommended Posts

Here is the main query that is returning $current_bid as empty. This is why I wanted to grab another var to define this one. Maybe there is something I am missing here:

 

<?php
$query = "select id, title, pict_url, photo_uploaded, current_bid, starts from PHPAUCTION_auctions 
WHERE 
closed='0' AND 
suspended=0 AND 
private='n' AND 
starts<=".$NOW." 
ORDER BY starts DESC 
LIMIT ".$SETTINGS['lastitemsnumber']; 
$result = mysql_query($query); 
if ($result) { 
$num_auction = mysql_num_rows($result); 
} 
else { 
$num_auction = 0; 
} 

$i = 0;

$current_bid = mysql_result($result, $i, "current_bid");

?>

I can't actually see anything wrong with the query.

However, where does $NOW and $SETTINGS['lastitemsnumber'] come from?

 

You can replace $NOW with the MySQL variant.

$query = "select id, title, pict_url, photo_uploaded, current_bid, starts from PHPAUCTION_auctions 
WHERE 
closed='0' AND 
suspended=0 AND 
private='n' AND 
starts <= NOW()
ORDER BY starts DESC 
LIMIT ".$SETTINGS['lastitemsnumber']; 

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.