Jump to content

[SOLVED] super newb question


max613

Recommended Posts

What's wrong with this: http://cc.jct.ac.il/~max/1.php (and the following link)?

The code looks like this:

--Page 1.php--

<?php
session_start();
$_SESSION['bla'] = "cool";
echo "<a href=\"2.php\" style=\"font-size:30pt;\">next page</a>";
if(isset($_SESSION['bla'])) echo $_SESSION['bla'];
else echo "noooooooooooo";
?>

 

--Page 2.php--

<?php
session_start();
if(isset($_SESSION['bla'])) echo $_SESSION['bla'];
else echo "noooooooooooo";
?>

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/99041-solved-super-newb-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.