my problem is pretty crazy. Because, i have a FULLY WORKING PHP script that runs when i execute the webpage with this code..
<html>
<body>
<p>Hello</P>
<?php
$file1 = file_get_contents("http://services.runescape.com/m=itemdb_rs/api/graph/440.json");
$file2 = file_get_contents("http://services.runescape.com/m=itemdb_rs/api/graph /434.json");
$file3 = file_get_contents("http://services.runescape.com/m=itemdb_rs/api/graph/10294.json");
$file4 = file_get_contents("http://services.runescape.com/m=itemdb_rs/api/graph/2621.json");
$file5 = file_get_contents("../json/440.json");
$file6 = file_get_contents("../json/434.json");
$file7 = file_get_contents("../json/10294.json");
$file8 = file_get_contents("../json/2621.json");
if(($file1 != $file5)or($file2 != $file6)or($file3 != $file7)or($file4 != $file8))
{
$my_t=getdate(date("U"));
$hour = $my_t[hours];
$setTime = 12;
$ending = " # ";
if($hour > $setTime){
$hour-=$setTime;
$ending = "PM";
}else{
$ending = "AM";
}
print($file);
print("$my_t[weekday], $my_t[month] $my_t[mday], $my_t[year] $hour:$my_t[minutes] $ending");
$to = "php.tester@mailinator.com";
$subject = "Ge Has Updated";
$body = "$my_t[weekday], $my_t[month] $my_t[mday], $my_t[year] \n$hour:$my_t[minutes] $ending";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent to ".$to." !</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
copy("http://services.runescape.com/m=itemdb_rs/api/graph/440.json","../json/440.json");
copy("http://services.runescape.com/m=itemdb_rs/api/graph/434.json","../json/434.json");
copy("http://services.runescape.com/m=itemdb_rs/api/graph/10294.json","../json/10294.json");
copy("http://services.runescape.com/m=itemdb_rs/api/graph/2621.json","../json/2621.json");
}
?>
</body>
</html>
BUT when i just strip out the content in the <?php.... ?> tags... but i also copy the php tags as well. and save as a standalone php script that i use a Cron to run every five minutes. it willnot work. Any help?
ps. i have tried manually editing my local .json files just to make sure that it isnt working.
EDIT: i copied starting with <?php and ending with ?> everything. that includes the tags.
<?php... ?>tags? How do you expect anything to happen then? Post the exact script that you're trying to execute as a cronjob. – lanzz Sep 19 '12 at 20:35<?php... ?>also. – Dylan Sep 19 '12 at 20:36