I got it figured out. You have to use a covert function while pulling the date and time info out in the select statement. Below is what I used:
$db = mssql_connect($hostname,$username,$password);
mssql_select_db($dbname);
$sql_query = "select
convert(char,ScheduleStartTime, 8)as ScheduleStartTime,
convert(char,ScheduleEndTime, 8)as ScheduleEndTime,
ConferenceNumber,
convert(char,ScheduleDate, 101)as ScheduleDate,
CustomerId,
Resource,
DestinationNumber
from $tablename
order by ConferenceNumber";
I wasn't familiar with having to do this since its not necessary in Mysql.
Thanks