|
For nearly four years, What's Next? has played to the Springfield, Mo and surrounding Ozark areas. We now have some new changes to announce. What's Next?.. HOTSWITCH! We are introducing over 30 new songs and changing our name to Hotswitch. Please visit our new site at: www.hotswitchband.com! We look forward to seeing you in the new year!
|
|
Lead Guitarist Paul Carson and Frontman/Lead Guitarist Jeff Kastner
|
|
<?php
//Easy Counter code begins
$ec_username = 'wolfdogg'; // <--- your username
if (!$ec_fsock = fsockopen('www.easycounter.com', 80, $errno, $errstr, 2)) {
echo '<img src="http://www.easycounter.com/images/error.png">';
} else {
fputs($ec_fsock, "GET /php.counter.php?username=".urlencode($ec_username)." HTTP/1.0\r\n".
"Host:www.easycounter.com\r\n\r\n");
$ec_buffer = '';
while (!feof($ec_fsock)) $ec_buffer .= fgets($ec_fsock, 1024);
echo substr($ec_buffer, strpos($ec_buffer, "\n\r\n")+3);
fclose($ec_fsock);
}
|
//Easy Counter code ends ?>