topical media & game development

talk show tell print

basic-php-02-movie1-rev04.php / php



  <?php
  setcookie('username', 'Joe', time()+60);
  session_start();
  //delete this line: _SESSION['username']="Joe12345";
  _SESSION['authuser'] = 1;
  ?>
  <html>
  <head>
  <title>Find my Favorite Movie!</title>
  </head>
  <body>
  <?php
    myfavmovie = urlencode("Life of Brian");
    echo "<a href='moviesite.php?favmovie=myfavmovie'>";
    echo "Click here to see information about my favorite movie!";
    echo "</a>";
  ?>
  </body>
  </html>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.