I'm following a guide online on Google Cloud Messenger. I got to this php file:
<?php
// Database config variables
define("DB_HOST", "localhost");
define("DB_USER", "xxxxxxxxx");
define("DB_PASSWORD", "xxxxxxx");
define("DB_DATABASE", "gcm");
// Google Cloud Messaging API Key
// Place your Google API Key
define("GOOGLE_API_KEY", "AIzaSyA81yS1VSj1WZXY_T");
?>
What should I fill in for DB_USER and DB_PASSWORD? What are the defaults?