Okay so I have been trying to fix up a mailing script and suddenly the links stopped working to get to inbox and to compose. I don't remember changing anything about them.
<?php
if (!$view && !$read) {
print "What are you going to do?<br><br>
- <a href=mail.php?view=inbox>Inbox</a><br>
- <a href=mail.php?view=write>Compose</a>";
}
if ($view == inbox) {
[...]
}
if ($view == write) {
[...]
}
?>