I have changed the following code:
mysql_connect('localhost','username','password');
mysql_select_db('pl') or die( "Unable to select database");
to
PDO('mysql:host=localhost;dbname=pl;charset=UTF-8', 'username', 'password');
Is it correct or do I have to pass this to a variable (in the PDO tutorial it is being passed to a variable db; what is the purpose of that? http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers)


