Search results

  1. Scoochi2

    Travian

    I'm on S1 of travian.com Used to play on S3 as well but I deleted that. Maybe I'll startup again on it as Gauls or something... :D
  2. Scoochi2

    PHP setcookie problem...

    It should... Which is why I'm so confused now, lol! Edit: Anyone able to help?
  3. Scoochi2

    PHP setcookie problem...

    Yeah, it does. And it's something I take advantage of. For example: if (($action == 'logout') || ($data['pass'] == '')) $pass = 'log me out! ;)'; if ($pass == $data['pass']) But even if it isn't overwriting a variable, it should still create the cookie, yes?
  4. Scoochi2

    PHP setcookie problem...

    It concerns login to my site and deals with passwords and such. I have commented out anything I don't want publically known that is also irrelevant. As for the actual setcookie part, I uploaded the '123' test, with identical results as to the normal data it has. Namely, what I previously...
  5. Scoochi2

    PHP setcookie problem...

    I have a problem within one of my programs where I cannot set cookies at all. [...] if (conditions) { $cookiedata = '123'; setcookie("cookie1", "$cookiedata", time()+604800, '/'); echo "$cookiedata"; } [...]I have used the above code, and the page will show 123, as expected. However, there is...
Top