PHP/MySql

REAL STUPID php/Mysql mistake !

I guess sometimes you have to learn the hard way.
I have programmed many modules for Pictures2Rate, for about 5 of these I have connected to the database with this code in the in the top of each file -
<?php
$con = mysql_connect(”localhost”,”USERNAME”,”PASSWORD”);
if (!$con)
{  die(’Could not connect: ‘ . mysql_error()); }
mysql_select_db(”DB_NAME”, $con);
//CODE STARTS HERE
?>
 The problem with this is [...]