I saw in some code @ before function like this:
$result_ord = @mysql_fetch_array($result_ord); - What does it mean?
Thank you
it supresses any output to the web browser in case errors are reported
Remember, it hides all errors. If you use it, you will never know that an error occured. You must do your own error checking!