Hello All!
I´m a newbee programmer and need some help.
I got a redirect code that should show each day another site with another content. I search since long time where the mistake is, but cant find any. If anybody could help me, or can give me an alternate would be great. Thank you!
Here is the code:
<html>
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
setlocale(LC_TIME, "en");
<? php
$redirect="week".floor(strftime("%d")/7)."/".strtolower(strftime("%A")).".php";
$new="http://www.superpam.tv/free/".$redirect;
?>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<? php
include $new;
?>
</body>
</html>