Hi everyone,
I am creating a student timetable. I have the table done in html and I now need to input the values in the database.
I was trying to use something along the lines of
if(day = 'Monday' && time = '9') {
echo(subject);
}
i keep getting an error of undefined day and time. I also tried
if(sem1week1.day = 'Monday' && sem1week1.time = '9') {
echo(subject);
}
I got the same error except it was undefined sem1week1.day
appreciate any help