Search results

  1. D

    C++ and MySQL

    So, when i try to connect to my mysql databases, i get this error: And sometimes this one: Error 110 is a timeout error, and 111 is a connection refused error... So i know it probably is not my code, but just in case: #include <iostream> #include <string> #include <stdlib.h> #include...
  2. D

    phpMyAdmin Error

    I am receving an error when entering phpMyAdmin. I can still access the databases via my own scripts, but having phpMyAdmin working is still nice.
  3. D

    mysql UPDATE issues

    I am normally a "hack at it till it starts working and never ask anyone for help" kind of guy, but i just dont get this :confused: What is this code would cause there to be no error report, and yet for the update to not take effect? (Assume the connection was already made and the POST values...
  4. D

    PHP mysql_list_dbs

    I am having an issue with this script, when vist the page, it just loads forever. What am i doing wrong? <?php $host = "localhost"; $user = "user1234"; $password = "pass1234"; $connection = mysql_connect ($host, $user, $password) or die ('DB connection failed because: ' . mysql_error())...
  5. D

    Login Error (Error Code 0F3CB740)

    I was trying to login today at the new x10hosting.com/control, and i got this error:
  6. D

    Send Mail from Diffenet Account PHP

    So, I have my mail script out and fine, it works, but it sends the mail from my user@boru.x10hosting.com... I need it to come from my user@domain.co.cc mail account. I know there is a way to change it from the php.ini file, but I dont have access to that, so is there a feature of code im...
Top