Basit PHP MySQL soru: Ben ne giriş kullanmalıyım?

0 Cevap php

Hey guys, ben sadece MySQL ve PHP ile başlayan ve bir sorum var ediyorum.

Yani PHPMyAdmin gitti ve bir veritabanı oluşturulur. Bu veri tabanı i bir tablo oluşturdu.

Şimdi PHP ile tablo erişmek istiyorum ve aşağıdaki kodu kullanabilirsiniz:

<?php
$con = mysql_connect("localhost","username_of_my_database","password_of_my_database");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
?>

Ancak, ben bu hatayı alıyorum:

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'username_of_my_database'@'localhost' (using password: YES) in /home/user_of_my_database/public_html/mywebsite.com/facebook/home.php on line 3 Could not connect: Access denied for user 'username_of_my_database'@'localhost' (using password: YES)

Yani veri günlüğü yanlış. Benim soru: How do you get the right log in data? What do i have to fill in instead of what i did?

Yardımlarınız için teşekkürler çok!

So what should i use: My username is: javaaa, my database is called: new year, which make for javaaa_newyear? and the password was made when making the new year database. And within the new year database there is a table called: party.

0 Cevap