Can it be done if so please let me know how as I cannot seem to get it to work and it's frustrating me to tears 😢 please help if you need the code let me know and I'll edit the post and add it.
----------------------------------------------------------------------[edit]------------------------------------------------------------------------------
this is the code i'm using.
<!-- Begin: Form Description -->
<table border="0" cellpadding="0">
<td bgcolor="#FFFFFF"> <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','383','height','220','src','loop','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','loop' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="383" height="220">
<param name="movie" value="loop.swf">
<param name="quality" value="high">
<embed src="loop.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="383" height="220"></embed>
</object></noscript>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><ul id="MenuBar1" class="MenuBarHorizontal">
<li><a class="MenuBarItemSubmenu" href="#">Home</a>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Employment</a></li>
<li><a href="#">Booking</a></li>
</ul>
</li>
<li><a href="#" class="MenuBarItemSubmenu">Dj's</a>
<ul>
<li><a href="#">Our Dj's</a></li>
<li><a href="#">Package 1</a></li>
<li><a href="#">Package 2</a></li>
<li><a href="#">Package 3</a></li>
</ul>
</li>
<li><a class="MenuBarItemSubmenu" href="#">Karaoke</a>
<ul>
<li><a href="#">Package 1</a> </li>
<li><a href="#">Package 2</a></li>
<li><a href="#">Package 3</a></li>
</ul>
</li>
</ul>
</td>
</tr>
</table>
<!-- End: Your FormMail's Description -->
<!-- Begin: Form -->
?php
if( !$isHideForm ):
global $sErr ;
if( $sErr ) print "<br><a name='error'></a><center><font class='form_error' >$sErr</font></center><br>";
$starColor = $sErr ? "#ff0000" : "#000000";
$style=" class='form_text' ";
?>
<form name="frmFormMail" action="<?php print PHP_SELF ?>" method='post' enctype='multipart/form-data'>
<input type='hidden' name='formmail_submit' value='Y'>
<input type='hidden' name='esh_formmail_subject' value="Booking">
<input type='hidden' name='esh_formmail_return_subject' value="Booking Form">
<input type='hidden' name='esh_formmail_return_msg' value="">
<table cellspacing='16' cellpadding='0' border='0' >
<tr>
<td class="form_field" valign='top' align='right'>Name </td><td width='10' aligh='right' valign='top'> <font size='2' color='#ff0000'>*</font> </td>
<td class="form_text">
<input type="text" name="Name" value="<?php print HtmlSpecialChars( $HTTP_POST_VARS[ "Name" ] ); ?>" class='text_box'>
</td>
</tr>
<tr>
<td class="form_field" valign='top' align='right'>Email </td><td width='10' aligh='right' valign='top'></td>
<td class="form_text">
<input type="email" name="Email" value="<?php print HtmlSpecialChars( $HTTP_POST_VARS[ "Email" ] ); ?>" class='text_box'>
</td>
</tr>
<tr>
<td class="form_field" valign='top' align='right'>Address </td><td width='10' aligh='right' valign='top'> <font size='2' color='#ff0000'>*</font> </td>
<td class="form_text">
<input type="text" name="Address" value="<?php print HtmlSpecialChars( $HTTP_POST_VARS[ "Address" ] ); ?>" class='text_box'>
</td>
</tr>
<tr>
<td class="form_field" valign='top' align='right'>Phone Number </td><td width='10' aligh='right' valign='top'> <font size='2' color='#ff0000'>*</font> </td>
<td class="form_text">
<input type="text" name="Phone_Number" value="<?php print HtmlSpecialChars( $HTTP_POST_VARS[ "Phone_Number" ] ); ?>" class='text_box'>
</td>
</tr>
<tr>
<td class="form_field" valign='top' align='right'>Date Of Event </td><td width='10' aligh='right' valign='top'> <font size='2' color='#ff0000'>*</font> </td>
<td class="form_text">
<?php
selectList( "Date_Of_Event_MM", $HTTP_POST_VARS["Date_Of_Event_MM"], 1, 12, "MM", $style ) ;
selectList( "Date_Of_Event_DD", $HTTP_POST_VARS["Date_Of_Event_DD"], 1, 31, "DD", $style ) ;
selectList( "Date_Of_Event_YYYY", $HTTP_POST_VARS["Date_Of_Event_YYYY"], date("Y"), date("Y")+3, "YYYY", $style ) ;
?>
</td>
</tr>
<tr>
<td class="form_field" valign='top' align='right'>Time Of Event </td><td width='10' aligh='right' valign='top'> <font size='2' color='#ff0000'>*</font> </td>
<td class="form_text">
<?php
selectList( "Time_Of_Event_HH", $HTTP_POST_VARS["Time_Of_Event_HH"], 0, 23, "HH", $style ) ;
selectList( "Time_Of_Event_MM", $HTTP_POST_VARS["Time_Of_Event_MM"], 0, 59, "MM", $style ) ;
?>
</td>
</tr>
<tr>
<td class="form_field" valign='top' align='right'>Function Type </td><td width='10' aligh='right' valign='top'> <font size='2' color='#ff0000'>*</font> </td>
<td class="form_text">
<select name="Function_Type" <? print $style; ?>>
<option value=''>- Select -</option>
<option value="Party" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "Party" ); ?> > Party
<option value="Kids Party" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "Kids Party" ); ?> > Kids Party
<option value="Birthday" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "Birthday" ); ?> > Birthday
<option value="16th" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "16th" ); ?> > 16th
<option value="18th" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "18th" ); ?> > 18th
<option value="21st" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "21st" ); ?> > 21st
<option value="30th" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "30th" ); ?> > 30th
<option value="50th" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "50th" ); ?> > 50th
<option value="Christmas" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "Christmas" ); ?> > Christmas
<option value="New Years" <?php formSelected( $HTTP_POST_VARS[ "Function_Type" ], "New Years" ); ?> > New Years
</select>
</td>
</tr>
<tr>
that's because there is to much to fit it all in