still errors, eh?
try this.
<?php
if ($_GET['jumpy'] == "services"){
header("Location: http://www.jaeboy.com/service.php");
exit();
}
if ($_GET['jumpy'] == "portofolio"){
header("Location: http://www.jaeboy.com/portfolio.php");
exit();
}
if ($_GET['jumpy'] == "moredet"){
header("Location: http://www.jaeboy.com/detail.php");
exit();
}
if ($_GET['jamesnet'] == "staffs"){
header("Location: http://www.jaeboy.com/staffs.php");
exit();
}
if ($_GET['email'] == "apply"){
header("Location: http://email.jaeboy.com");
exit();
}
?>
I'd personally use a case though. I think its much easier to read in cases like this.
It would go something like this.
switch ($_GET['jumpy']) {
case "services":
header("Location: http://www.jaeboy.com/service.php");
exit();
break;
case "portofolio":
header("Location: http://www.jaeboy.com/portfolio.php");
exit();
break;
......