I am doing a query to sum a field, such as
$T="Select sum(Need_Processed) from Registration";
$result=mysql_query ($T);
At this point, how do I convert the $result to show the actual sum that the query produced. I know I just cant print or echo result, but I am not sure how to convert the results back to the actual integer it is holding.
Thanks,
Paul