Jump to content

TwoSaints

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

About TwoSaints

  • Birthday 12/01/1983

Contact Methods

  • Website URL
    http://www.jonnyhope.co.uk

Profile Information

  • Gender
    Male
  • Location
    Monté Darlo

TwoSaints's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. can you use links relative to the site root - this is done by simply prefixing a / to your relative urls: /view/styles/style.css is equivalent to www.mysite.com/view/styles/style.css
  2. http://code.google.com/p/mobileesp/ Seems pretty comprehensive, planning on trying it out on my next project.
  3. TwoSaints

    cms

    use stripslashes again when you load it into the textarea
  4. Thanks, that has helped me sort it, handy website that aswell!
  5. Hi, probably a simple solution to this which I am overlooking, doing my first foray into using cookies. So far all is well, but how do I make a cookie valid for both www.mysite.com and mysite.com if(isset($_POST['remember'][1])) { $session_id = md5($_SESSION['username'] . $_SESSION['last_login']); setcookie("session_id", $session_id, time()+60*60*24*30, "/"); } Thanks, TS
  6. Might be a little awkward but you could hash the variable? It won't hide it but would make it near impossible to guess other ids.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.