Search results

  1. S

    406 Not Acceptable...

    is it back up now? can you post a link here?
  2. S

    Think I posted in wrong place. Pls Help?

    How should it be working though? what exactly is the problem?
  3. S

    Login.php

    do that if you are sure that there is no other character before your <?php session_start(); I have read that character sets can provide those magic boxes before your file so that your session start will give an error.
  4. S

    MySQL

    are you running ubuntu? if so browse all the other rcX.d folder and check whether your mysql is run there. I had around 3 files in rc2.d folder. 1. S19mysql 2. S17mysql-ndb 3. S18mysql-ndb-mgm all of which are symlinks... rcX.d folders contains most start up daemons and are on different run...
  5. S

    How long before php mail arrives

    You too huh? Here is a work around... create a normal gmail account. send your email there. create a filter to forward messages to your google appz account. Though it might take longer to arrive.
  6. S

    Php

    are you sure you don't want the horizontal, hover one? I can give you the code now.
  7. S

    NTFS vs FAT

    yes ntfs is faster and yes fat is old tech, but fat has different flavors 16bit and 32bit. but since fat in any flavor is accessible via most operating system this will be a security risk, but on the other hand if your OS crashes then most probably your data is still intact. and easily...
  8. S

    Corey Got married!!

    Congratulations Corey. and welcome to the club. ;)
  9. S

    Javascript innerHTML help

    try putting quotes on document.getElementById("text").innerHTML That should make it work.
  10. S

    best antivirus Norton or Mcafee

    NOD 32 and AVG both are non-resource hogs. AVG mostly as it is free.
  11. S

    How do YOU feel about having kids?

    I have a toddler now. It is quite difficult to explain why I find that having a kid is good. It makes me lose sleep at night, it prevents me from doing some stuff that I WANT to do because I have to be with my baby, and worst of all having a baby is a financial constraint and it prevents me from...
  12. S

    database failure

    Even "../" will work fine. eg. Home +----pictures | +----scripts your file inside scripts folder can have a include "../pictures/random_nude_pix_album.php"; it will work. another thing to note is x10hosting is files and directories are case sensitive.
  13. S

    php post request: random characters output to screen

    I'm not sure but it could be that require_once("$user_status"); is the one giving you the random characters? because require_once is used to include files once. Although this should generate an error. I'm confused also. anyway try to check that certain "require_once" and please correct me if...
  14. S

    Helps with spacing

    Sorry I was asked for a username and password So I cannot access your site. :) Anyway check your CSS it sometimes causes the gaps because of different implementations between MSIE and FF. Hope this helps.
  15. S

    Add & Sub Dates in php

    Why don't you use a time stamp instead. Or in worst-case scenario split the date into components of hours, minutes seconds... etc. and just do the math from there. But I think unix timestamps will be easier but a bit limited I am also not very familiar with date and time handing in php but I...
  16. S

    [Game Programming] Highlander

    I'd like to see where this leads. Count me in... my talents are a little bit of, Turbo pascal, a bit of gwbasic, very little assembly, very little visual basic 96, little bit of c/c++, html, php, javascript. But I think my main talent lies in analysis.
  17. S

    short PHP help

    I am not an expert or anything but I think you should modify your code from: <div id="content"> <?php if(get_option('unnamed_shelf') == 1 && is_home()){ ?> <?php include(TEMPLATEPATH ."/shelf.php"); ?> <?php } ?> <?php if(get_option('unnamed_shelf') != 1 || !is_home()){ ?> <div...
  18. S

    PHP & SQL help

    if(isset($_GET['ob']) && isset($_GET['o']) && (($_GET['o']=="asc") || ($_GET['o'] == "d")) && (($_GET['ob'] == "name") || ($_GET['ob'] == "added") || ($_GET['ob'] == "date"))) { $sql = "SELECT * FROM `Links_links` ORDER BY `Links_links`.`" .$_GET['ob'] . "` "; if($_GET['o'] == "asc") {...
  19. S

    lordskid.exofire.net - Sybregunne

    Does the order really matter? :) Thanks. It saves me the trouble of deleting and signing up again. :)
  20. S

    A simple PHP query..

    Just a thought... I read somewhere that mysql functions have many problems and issues. why not use the mysqli functions instead. it is basically the same commands and syntaxes than mysql. Edit: public function getLoginInfo(InfoVO $vo) { $_email = $vo->email; //make sure that...
Top