ok, i have phpmyadmin working with no problem so i know its not a problem with my setup but when i try to use any of my scripts that have mysql functions in them i get this error
File 'c:\mysql\share\charsets\?.conf' not found (Errcode: 2)
Character set '#48' is not a compiled character set and is not specified in
the 'c:\mysql\share\charsets\Index' file
. now i have no idea why this is happening but just to show you i will include a simple script that i know works and i get this error on.
$db_host = 'localhost'; //mySQL location
$db_user = 'root'; //mySQL server Username
$db_pass = 'password'; //mySQL server password
$db_data = 'password'; //mySQL database
$link = mysql_connect($db_host, $db_user, $db_pass);
$dbsel = mysql_select_db($db_data);
i know this works but what the heck is going on?