i have a very strange problem, well not really a problem because i've fixed it but still, when i'm trying to connect to mysql db with:
mysql_connect("server", "user", "pass") or die(mysql_error());
elde im:
Access kullanıcı 'kullanıcı' için reddedildi @ 'sunucu' (şifrenizi kullanarak: EVET)
ama tek tırnak parolası etrafında tırnak değiştirdiğinizde:
mysql_connect("server", "user", 'pass') or die(mysql_error());
it works just fine. i dont have this problem in another server i've got. so maybe it's something in the mysql settings or in the php.ini?
teşekkürler.