Search results

  1. N

    PHP: setcookie() doesn't work?

    Hi. I made a website that has a login system. The cookies worked fine until I changed the layout. Could you tell me why this is happening? Login Code: setcookie("loginuser", $username, time()+2592000); setcookie("loginpassword", $password, time()+2592000); (I tried checking my cookies, and I...
  2. N

    How do you use PHP and MySQL to make ID-linked images?

    I have one image, and I want multiple users on my site to "own" this same image with their own specific ID number, so that it doesn't use my main image URL. So rather than displaying http://www.example.com/image.png I want something like http://www.example.com/image.php?id=1 that can be used as...
Back
Top