notsoevilgenius
MIS
I have the following code that works and looks really nice according to my CSS rules.
I would like users to be able to get the workshop location on their smart phone map application for directions.
Thank you.
Code:
<div class="col-lg-4">
<!-- Workshop Schedule -->
<h4>Workshop Schedule</h4>
<?php
while($row = mysql_fetch_array($result))
{
?>
<dl>
<dt><?php echo date('m/d/Y', strtotime($row['wDate']))?> - <?php echo date('g:i A', strtotime($row['wTime']))?></dt>
<dd><?php echo $row['Location']?></dd>
<dd><?php echo $row['Address']?></dd>
<dd><?php echo $row['City']?>, <?php echo $row['State']?> <?php echo $row['Zip']?></dd>
<dd><?php echo $row['Presenter']?></dd>
</dl>
<?php
}
mysql_close($con);
?>
</div>
I would like users to be able to get the workshop location on their smart phone map application for directions.
Thank you.