include("include.php");
$pageName= "foodlog.php";
if ( !$userLoggedIn )
{
header( "location: login.php?from=new");
exit;
}
else
{
$cUserInfo = GetUserInfo( $userLoggedIn );
$usUserName = $userLoggedIn;
}
if ( count($HTTP_POST_VARS) > 0 )
{
if ( $submit == "Add Food" )
{
$sql = "
INSERT INTO
foods ( foodDate, foodType, foodAmount, foodMeasurementType, usUsername )
VALUES
('$newFoodDate', '$newFood', '$newFoodAmount', '$newMeasurmentType', '$usUserName' )
";
//echo("sql - $sql
");
if ( !($result = mysql_query($sql,$conn)) ) DBErr($sql, $conn);
}
if ( $submit == "Show Totals" )
$showTotals = TRUE;
if ( $submit == "Hide Totals" )
$showTotals = FALSE;
}
else
$showTotals = FALSE;
?>
InnerAthlete™ - Nutritional Log
|
| Food Log |
Nutritional values of foods from the USDA: Look Here!
|
| Copyright©
1999-2007 InnerAthlete™ All rights reserved.
|
|
|
|