Search results

  1. as4s1n

    Question about paid plans

    If I move up to a paid plan, would there be any way to cancel the plan and move back to free service?
  2. as4s1n

    Javascript SlideShow Application help

    I am working on a slideshow script for my website and for some reason whenever it runs the script works just fine for the first two images I have and then for no reason I can see, prints one extra debug message and stops, not even going to three. Javascript: // Variables var i = -1...
  3. as4s1n

    PHP script only shows when admin is loggedin

    When people log into my site up at the top right shows their profile picture, a link to their account and a sign out link (regular user). But whenever people log in the top right is invisible, even on the source. Only the admin and not logged in users (register & log-in) can see it. <?php...
  4. as4s1n

    Ajax XMLHTTPREQUEST

    I am trying to make a dynamic registration form that checks the database to see whether the username is taken whenever they keyup(event). I have no idea what is wrong, I have an error message set up in case their browser does not support it but it does not seem to show. Please help Ajax...
  5. as4s1n

    MySQLi connection

    What is the difference between a mysql connection and a mysqli connection? I was reading a PHP book that uses mysqli connection and has a way to make sure sql injections do not happen using the mysqli_real_escape_string(). Would I have to change the way I form my queries at all or is it just a...
  6. as4s1n

    PHP inbox script returns 1 row

    My PHP script for a PM (private message) inbox only returns one row and I am not sure what is wrong. <a href="index.php?p=createMessageForm">Create Message</a> <table border="0" cellpadding="2" cellspacing="2" id="inbox"> <tr> <th width="300">From</th><th width="500">Subject</th><th...
  7. as4s1n

    PHP resource error #6

    I was working on a private message system and I ran into a huge problem. Whenever they go to send a message, they get a custom error message and I get an error that reads Resource error #6. Here is my code: <?php $toUsers = explode(',',$_REQUEST['toUser']); $subject =...
  8. as4s1n

    PHP function reference

    I was wondering if you could create a PHP function on one page and reference it on several other pages, not unlike the javascript <script src="filepath.js"></script> functionName(params) method.
  9. as4s1n

    IE PHP session help

    For some reason, when people would go to their profile page in IE, it has the error message I have that reads: You do not have permission to view this page (The error would be in case the person wanted to hide their profile page) however regardless of hidden or not it still says that. I do not...
  10. as4s1n

    Stylesheet exploded

    I was working on a new layout for my website when all of a sudden, my stylesheet blew up and everything is not where it should be! Beta website: http://sikuneh.x10hosting.com/New%20SL/index.php Stylesheet code: body { border:0; padding:10px; margin:0; background:#FFF...
  11. as4s1n

    Can connect to one database but not the other

    When I go onto one of my websites, it connects just fine, no problems at all, the other one cannot connect at all. YET, when I go into the MySQL section of my cPanel it shows both's size = 0.0. When I go into PHPmyadmin it says I have 6 tables inside the one I cannot connect to on the left but...
  12. as4s1n

    MySQL Databases have no data

    All my MySQL databases have 0.0MB size in the MySQL section. However, when I go into PHPmyadmin, it shows I have x amount of tables but when I go into the database it shows "No tables found." If I need to copy all the data from my home server tell me now so I can get started.
  13. as4s1n

    Errors???

    Whenever I go to my site I see this error: Warning: mysql_query() [function.mysql-query]: #07000(proxy) all backends are down in /home/sikuneh/public_html/Submission_lore/inc/m.php on line 15 Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in...
  14. as4s1n

    MySQL cannot connect

    On my site (http://sikuneh.x10hosting.com) all the locations where I use MySQL return the same error: Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home/sikuneh/public_html/Submission_lore/inc/m.php on line 15 Can you fix this?
  15. as4s1n

    Account re-transfer

    I need my account transferred. My account name is sikuneh
  16. as4s1n

    Remote MySQL

    I'm trying to connect my home computer PHPMyAdmin to my database on the server... but i'm not sure what to do... i have no idea where to start Pliz help
  17. as4s1n

    Mail

    I've been trying to get my php mail() function to work. Do i have to run it through one of my webmails on cPanel or what?
  18. as4s1n

    Javascript

    I've been experimenting with javascript a little bit. I stumbled upon the Prototype object. I don't understand it. I know you give a custom property to it when using it but i don't understand how it works and what it does by doing that... Please help
  19. as4s1n

    Ajax confused

    I'm experimenting a little bit with Ajax and i'm trying to get an asynchronous login that checks the name when the user leaves the field (onblur). I'm totally lost, the ajax is fine but i'm trying to get the php page with the usernames on it working... $query = "SELECT login from users"...
  20. as4s1n

    Upload path for images

    Ok, so i'm hosting a site contest to get a new banner for my site, cuz i want to get the people involved. I'm using define('DC_UPLOADPATH','images/Banner_contest'); what would be the correct upload path if i want to put it in images/Banner_Contest folder?
Top