Hi,
I keep getting the error:
Parse error: parse error, unexpected T_STRING on line 34.
I have highlighted line 34 bold in the small bit of code below...
Can anyone spot the problem please? as i am 😕
Many thanks..
Ben
This is my code:
function makeday($date, $weekday) {
if($weekday==6 OR $weekday==7) {
$bgcolour = "f5f5f5" ;
}
else {
$bgcolour = "ffffff" ;
}
if($weekday==1) {
$weekday_text = "Mon" ;
}
if($weekday==2) {
$weekday_text = "Tues" ;
} etc... etc...
Loads of other irrelevant stuff here...
;
}