Hello
I went to www.phpioneers.com and I got this scrip which is suppose to be a calendar. I tried in my computer but it didn\'t work
can anyone tell me what is wrong. I get only blank white page.
Can anyone tell me where can I find a good php calendar
HTML><BODY BGCOLOR=WHITE>
<basefont face=arial>
<code>
<?php
$x=exec( \"cal \",$a,$retVal);
$strOutput =nl2br(join($a, \"\n\"));
for($i=1;$i<strlen($strOutput);$i++){
$onechar=substr($strOutput,$i,1);
if ($onechar==chr(32)) {
echo \" \";
} else {
echo $onechar;
}
}
?>
</code>
</body>