Here you go.
<?php
// Make a MySQL Connection
mysql_connect("localhost", "usrname", "pwd") or die(mysql_error());
mysql_select_db("phpstorelocator") or die(mysql_error());
// Create a MySQL tables in the selected database
mysql_query("CREATE TABLE `slstate` (
`stateID` int(10) unsigned NOT...