Search results

  1. D

    How old are you?

    I dont believe you got the gist of what I was trying to convey. That was mostly my fault, I just read my own post, and can definitely see how its message could be misconceived. By Age != Experience, i was implying that adults (the majority as it would seem to me) do not spend most of their...
  2. D

    How old are you?

    17 as of May 2011. I manage the website and security of a small business in Indiana, and am the "to go guy" for any technical problem, computer or other wise, for most of the high school, including the faculty and students (mostly the faculty actually). Age != Experience.
  3. D

    css3 & html5

    Even Firefox does not completely support HTML5/CSS3. Dont get me wrong, i love firefox, and probably always will. The fact is that HTML5 and CSS3 are just being released (by "just" i mean in the past 6 months - year zone) and its gonna take a bit for browsers to support them completely. As for...
  4. D

    css3 & html5

    w3schools.com I wouldnt suggest using HTML5 or CSS3 however, because not much of either is fully supported by all browsers. Hell, IE is still trying to get to averaged W3 CSS.
  5. D

    C++ and MySQL

    The databases were to hold the site content, and program was to ultimately allow access to the site for modification. Thanks, Darkpunk
  6. D

    C++ and MySQL

    Thanks for the reply gomarc, saves me the worry that i was doing something wrong.
  7. 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...
  8. D

    Help for php mail()l script

    Try adding this before your mail() function: I find adding the SMTP to the setting file helped mine :P
  9. 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.
  10. D

    mysql UPDATE issues

    A typo, nothing more. I had formatted the date wrong, and so it did not find the entrée I specified. As for the issues with die and mysql_error, these are only problems if they are used on public web space, and not pages designed for developer use, where having as much feed back as to the...
  11. D

    mysql UPDATE issues

    This issue has been solved, thank you.
  12. D

    mysql UPDATE issues

    You are rather condescending. I am more than aware of the security risks and exploitations, and am simply looks for reasons on why my tables are not updating. Thank you, however, for the information you did provide about mysql_info
  13. 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...
  14. D

    PHP mysql_list_dbs

    I am sure. At any rate, I have eliminated the need for this script. Thanks to all who helped.
  15. 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())...
  16. D

    What do you use x10Hosting for?

    Neither does ice cream and hot fudge, but sure they do taste better that way 8)
  17. D

    Login Error (Error Code 0F3CB740)

    i can access it now, thanks all
  18. D

    Login Error (Error Code 0F3CB740)

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

    Send Mail from Diffenet Account PHP

    That didnt work either :( Here is the complete script: <html> <title>SMS System | SMS Sent</title> <head> <style type="text/css"> body {background-color: black; color: white} a {color: red} p {margin-left: 20px} </style> </head> <body> <center> <?php if ($_POST["carriers"] == "vtext") $to =...
  20. D

    Send Mail from Diffenet Account PHP

    The header doesn't work btw, and yeah, i want to change where its coming from, not where to to reply to.
Top