client.print not appearing in database

Thankyou. Thats solved that. I'm now getting the same issue with checking the response:

/Users/thomascooper/Documents/GitHub/A-Bit-Pushy/pb01_sketch/pb01b_httpPost.ino: In function 'bool sendRequest(unsigned int)':
pb01b_httpPost:58: error: 'checkHTTPstatusOK' was not declared in this scope
bool HTTPstatusOK = checkHTTPstatusOK(client);
^
/Users/thomascooper/Documents/GitHub/A-Bit-Pushy/pb01_sketch/pb01d_buttonPress.ino: At global scope:
pb01d_buttonPress:37: error: expected declaration before '}' token
}
^
exit status 1
'checkHTTPstatusOK' was not declared in this scope

I've tried to add the following, but it doesn't seem to do the job:

template <class T> void checkHTTPstatusOK(client);

As you can probably tell I'm outside of my sphere of competency somewhat!