Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/06/2014 in all areas

  1. It's suggested that you use mysqli because the old mysql will no longer work in about a year or so. Basic mysqli is almost the same as mysql with a few minor changes. W3Schools has a good MySQLi tutorial for PHP: http://www.w3schools.com/php/php_mysql_intro.asp
    1 point
  2. Your account was suspended for causing high server load. I have unsuspended your account, but please try to limit the load you put on our servers as it slows down not only your site, but the sites of all other HelioHost users sharing your server. If you still see the suspended page, please clear your cache.
    1 point
  3. mysql API has been deprecated. Please consider mysqli or PDO instead. The first parameter of mysql_connect is the MySQL server. Since PHP and MySQL resides on the same server, you should have used the string localhost instead. From tizag: In other words, <?php mysql_connect("localhost", "someday_someday", "CorrectPassword") or die(mysql_error()); mysql_select_db("someday_Database") or die(mysql_error()); ?>
    1 point
×
×
  • Create New...