Forum Moderators: coopster
BUT now, I need cookies.
I'm having problems trying to make it so when you go to the homepage, it tells you if your logged in or not in the upper right corner. The cookies are called register and login.
I have this code to work with.
<?php
foreach ( $_COOKIE as $key => $value )
print ( "<tr>
<td> $key </td>
<td> $value </td>
</tr>" );
?>
Where do I go from here? I'm lost.......
Thanks!