Hello
I tried to move the bold section of the below code into a function getWeights() located in a m_weight.php file (I want to implement MVC pattern)
<?php
$get_weights_q = mysql_query ("
SELECT * FROM users_weight
WHERE weight_uid = '$user_id'
ORDER BY weight_date DESC
", toctoc() ) or die(mysql_error() );
while ($weight = mysql_fetch_array($get_weights_q))
{ ?>
<li>
<?php echo date( " d M-y H:i (l) " , $weight['weight_date']). ' : ' . $weight['weight'] .
' <a href="'.$_SERVER['SCRIPT_NAME'].'?del=' . $weight['weight_id'] . '">Changer</a> ' ;
}
?>
</li>
</ul>
----------------
Here is the function:
function getWeights($user_id)
{
$get_weights_q = mysql_query ("
SELECT * FROM users_weight
WHERE weight_uid = '$user_id'
ORDER BY weight_date DESC
", toctoc() ) or die(mysql_error());
}
The result is :
Notice: Undefined variable: get_weights_q in H:\home\user\documents\DEV-H\EasyPHP-5.3.8.1\www\Food-Tribe\v_weight.php on line 44
Warning: mysql_fetch_array() expects parameter 1 to be resource, null given in H:\home\user\documents\DEV-H\EasyPHP-5.3.8.1\www\Food-Tribe\v_weight.php on line 44
If I let the code just above the While, in procedural mode it works fine...
Any idea?