Hi guys how can I call the procedure using php ?

Code:
<?php 

include 'config.php'; 
include 'opendb.php'; 

$qry = mysql_query("CALL HelloWorld()"); 
$row = mysql_fetch_array($qry, MYSQL_NUM); 

echo "$row[0]"; 

include 'closedb.php'; 

?>