Search results

  1. K

    Simple Php Connect

    took this straight from http://www.w3schools.com/php/php_mysql_connect.asp In the following example we store the connection in a variable ($con) for later use in the script. The "die" part will be executed if the connection fails: <?php $con =...
  2. K

    Lost database mySQL - phpMyAdm error #1040 Too many connections

    Was working on my php script --creating -updating - writing from and my phpMyAdm error says #1040 Too many connections When I try to repair the database it can not find it. I am sure I hosed it up. Any ideas on how to get it back. No big deal but it won't let me make a new one also. How...
  3. K

    Can not log in to C-Panel on my site

    My cpanel name is kenbob my site is www.brunk.elementfx.com I have not been suspended, according to a post today but am unable to log into CPanel. I also can not get my site to come up. Both Cpanel and my site time out when trying to pull up. Any help out there? Kenbob
  4. K

    Can't Get TO MY Site

    I am new to this site and have been working on my scripts for a few weeks. I have been logging into the forum and posting questions for help. It has been great! However the last 2 days I can not get to my site www.brunk.elementfx.com Is there something else you have to do? I made a menu with...
  5. K

    mysql_query("CREATE DATABASE Question

    QUICK QUESTION FOR SOMEONE CODE <?php $con = mysql_connect("localhost","kenbob_Ken","Ken"); if (!$con) { die('Could not connect: ' . mysql_error()); } if (mysql_query("CREATE DATABASE my_db",$con)) { echo "Database created"; } ERROR Error creating database: Access denied for user...
  6. K

    Newby mySQL Connect

    <?php $con = mysql_connect("ciroc","kenbob_Wayne","Wayne"); if (!$con) { die('Could not connect: ' . mysql_error()); } // some code mysql_close($con); ?> Here is my code -- I created a database and made a user and password Here is my error Warning: mysql_connect() [function.mysql-connect]...
  7. K

    Getting Started

    I put my index.php file in the file manager. my website name per my understanding is www.brunk.elementfx.com I am assuming you have to go to the web and type this in == nothing happens. Here is my index.php it is in my home directory Any help? <html> <head> <title>Can You Do It</title>...
  8. K

    Newby FlyOut Boxes

    I am re-learning building a web site. I used Macromedia Dreamweaver last time for flyout boxes off a main page of a website. Is there a new easier way or are people using FrontPage? Any help?:naughty:
Top