Okay, I've signed up. Your email told me the host information and FTP access but where to go to setup MySQL to initialize my first database.
I'm fine with the php code part of it. I just can't find the link on your zxMic pages that allows me to initialize mysql admin or a link to it with the information to log in.
Ultimately all I'd like to get to mysql admin page for this host to be able to establish the account I'll need for my php. I generally like to use mysql admin to create the tables but after that I'm back to code.
<?php
$con = mysql_connect( "host", "username", "password" );
if ( !$con ) { die( "Could not connect: " . mysql_error() ); }
mysql_select_db( "egt1dev", $con );
?>
what are my "host", "username" and "password" and where do I get them?
