myGLCD.print("Date :",8 ,8);
**Error** myGLCD.print(month,8,40); // 'invalid conversion from 'byte' to 'const char*'
myGLCD.print("/",8 ,56); // Error above is one that google didn't help with or did this forum using the error message as the search term
The UTFT class does not, apparently, derive from the Print function, so the UTFT::print() method is not overloaded, like the Serial.print() or client.print() functions are. The UTFT::print() method expects the first argument to be a NULL terminated array of chars. month is NOT a NULL terminated array of chars, and the compiler is telling you that it has no idea how to convert a byte to a NULL terminated array of chars.
Fortunately, the sprintf() and itoa() functions do.