I have a query checking some data in a table (name and a number associated with it) and returning one of them I need to set as a variable.
However, I run into trouble when I need to consider items that are not yet in the table - newcomers - as they should be regarded as having 0 as data but very obviously they do not have it in the database.
The script is as follows:
$jQuery = mysql_query("SELECT team, points FROM DCO_standings_teams WHERE competition='1' AND team='$teamname' AND year='$lastyear'");
{
$points="$row[1]";
$pointsmult = $points*50;
$pointsoffer = $wage_offer/100;
$bid_total = $pointsoffer+$pointsmult+$loyaltybonus;
}
In this case, say that Team A had 12 points from last year. It would set "12" as $points and go on to do all the other calculations.
What I need is something to tell the site that, IF no record is found in the DCO_standings_teams table, then it should set $points as 0.
Any help is appreciated, thank you!
mysql_*functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – Neal Jan 2 at 19:32$rowvariable? – Your Common Sense Jan 2 at 19:35