Avatar of Graeme McGilvray
Graeme McGilvray
Flag for Australia asked on

Countdown Timer

Hi all and thanks in advance

I am looking to put a time into my site that counts down to an event (date and time)

Every count down timer I have seen so far only counts down from a 'time' you specify... eg 60min, etc

Can any Genius help me? :)

Cheers in advance
JavaScript

Avatar of undefined
Last Comment
Graeme McGilvray

8/22/2022 - Mon
Big Monty

taken from here, this code allows you to specify a time you want to specify.

<html>
   <head>
// set the date we're counting down to
var target_date = new Date("Aug 15, 2019").getTime();
 
// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
     
    // format countdown string + set tag value
    countdown.innerHTML = days + "d, " + hours + "h, "
    + minutes + "m, " + seconds + "s";  
 
}, 1000);
   </head>
   <body>
        <span id="countdown"></span>
    </body>
</html>

Open in new window

plusone3055

<html> 

<script type="text/javascript">
window.onload = function() {
    var countdownElement = document.getElementById('countdown'),

        seconds = 3, 
        second = 0,
        interval;
   

    interval = setInterval(function() {
        countdownElement.firstChild.data = 'CNN Webpage will load in ' + (seconds - second) + ' seconds';
        if (second >= seconds) {
           window.open ('http://www.cnn.com/','_self',false)
            clearInterval(interval);
        }

        second++;
    }, 1000);
}
</script>


<body>

<div id="countdown"> 
Greetings User
</div>

</body>

</html> 

Open in new window

Graeme McGilvray

ASKER
BigMonty, I have cut and paste this directly into my page and it does not show anything...

the Code has not been altered at all
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
plusone3055

graeme

please try my code I made a simple  example for you to follow
Graeme McGilvray

ASKER
Cutting and pasting yours Plusone3055, shows nothing as well
plusone3055

here is the code in  a .html file
CountDown.html
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Graeme McGilvray

ASKER
its the same as i cut and pasted...
Big Monty

Try this

 
<html>
   <head>
Function doTimer() {
// set the date we're counting down to
var target_date = new Date("Aug 15, 2019").getTime();
 
// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
     
    // format countdown string + set tag value
    countdown.innerHTML = days + "d, " + hours + "h, "
    + minutes + "m, " + seconds + "s";  
 
}, 1000);
} 
   </head>
   <body onload="doTimer() ">
        <span id="countdown"></span>
    </body>
</html>

Open in new window

Graeme McGilvray

ASKER
Still nothing Big Monty

I am putting this code into <script> </script> too I am assuming...
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
Big Monty

I'll get you something when I get back to my computer
Graeme McGilvray

ASKER
Thank you Big Monty
Ray Paseur

âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Gary

No points for this, it's just Monty's code fixed

<html>
   <head>
<script>
function doTimer() {
// set the date we're counting down to
var target_date = new Date("Aug 15, 2019").getTime();
 
// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d, " + hours + "h, " + minutes + "m, " + seconds + "s";  
 
}, 1000);
} 
</script>
   </head>
   <body onload="doTimer()">
        <span id="countdown"></span>
    </body>
</html>

Open in new window

Scott Fell

How do you want the counter to look?  I have been using moment  http://momentjs.com/  It is a js timer library.  It is very easy to use to convert, add, subtract date and time.  Especially useful when you have date in a database in one format and need to put in another.


I use moment for a count down timer to show the amount of time left until you are logged out.  If the other solution does not work out, I would be happy to detail.  But it is at least worth the time to look over moment.js if you use time in your  projects.
Graeme McGilvray

ASKER
Ray -  tried that code you suggested, nothing appears

Gary -  cheers, still nothing showing

Scott - Would like a Days, Hours, Minutes, Seconds Countdown, however from the event (pulled from database, changes week to week)
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23
Big Monty

the code Gary fixed does indeed work - http://www.exchangetree.org/test.asp

did you copy the code exactly as is or did you integrate it into existing code? do you have a test link we can see the page in question? what browser are you using?
Graeme McGilvray

ASKER
Argh! had something out of place :/

now all I need to do is pull the event times/dates out of an Access database to show the countdown
Scott Fell

You would just use a call from the db to set the event date/time

var target_date = new Date("Aug 15, 2019").getTime();

convert to

var target_date = new Date("<%=rs("date")%>")
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Graeme McGilvray

ASKER
ok updated the code to reflect the db date/time

NaNd NaNh NaNm NaNs until Practice 1.. ideas?
Big Monty

excellent, now to get the data from the database, you would modify the code to look something like:

<%
dim conn, rs, sql, targetDate

set conn = Server.CreateObject("ADODB.Connection")
set rs = Server.CreateObject("ADODB.RecordSet")
conn.Open connectionString     '-- fill in your db connection details here

sql = "select targetDate from tblName where......"    '-- sql to grab your date
set rs = conn.Execute( sql )

if not rs.BOF and not rs.EOF then
     targetDate = rs("targetDate")
else
     targetDate = Now()    '-- set a default value in case it doesnt get a date from the database, this is of course optional
end if

if rs.state <> 0 then rs.Close
conn.Close
set rs = nothing
set conn = nothing
%>
<html>
   <head>
<script>
function doTimer() {
// set the date we're counting down to
var target_date = new Date("<%=targetDate%>").getTime();
 
// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d, " + hours + "h, " + minutes + "m, " + seconds + "s";  
 
}, 1000);
} 
</script>
   </head>
   <body onload="doTimer()">
        <span id="countdown"></span>
    </body>
</html>

Open in new window

Big Monty

it would help to see the code you're using as well as the output (do a view source and copy & paste that here
Your help has saved me hundreds of hours of internet surfing.
fblack61
Big Monty

also, what format is the date in?
Graeme McGilvray

ASKER
<html><!-- InstanceBegin template="/Templates/template.dwt.asp" codeOutsideHTMLIsLocked="false" -->
<head>
<title>Aus F1 Tours.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<%
	Dim oConn

	Set oConn=Server.CreateObject("ADODB.Connection")
	Set Enquiry=Server.CreateObject("ADODB.Recordset")

	oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("core/core.mdb")

	SESSION("cn")="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("core/core.mdb")&";Persist Security Info=False"
	
	Today=Day(date())&"/"&Month(date())&"/"&Year(date())
	
	Set RaceNext=oConn.Execute("SELECT * FROM race_weekends WHERE confirmed=YES AND Date_from>"&Today)
	Set NextSession=oConn.Execute("SELECT * FROM race_sessions WHERE GP_ID="&RaceNext("ID"))
%>
<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
body {
	background-color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url();
}
a:link {
	color: #CCCCCC;
}
a:visited {
	color: #CCCCCC;
}
.style1 {color: #000000}
.style2 {font-size: 10px}
.style6 {
	font-size: 50px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
-->
</style>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-53350090-1', 'auto');
  ga('send', 'pageview');
</script>
<script>
function doTimer() {
// set the date we're counting down to
var target_date = new Date("<%=NextSession("Session_DateTime")%>")
 
// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s";  
 
}, 1000);
} 
</script>
</head>
<body onload="doTimer()">
	<table width=1346 border=0 align="center" cellpadding=0 cellspacing=0 background="images/formula_1_bg.jpg">
<!-- InstanceBeginEditable name="body" -->
<%
	Set Races=oConn.Execute("SELECT * FROM race_weekends WHERE confirmed=YES AND Date_from>"&Today&" ORDER BY Date_to")
'	Response.Write("SELECT * FROM race_weekends WHERE confirmed=YES AND "&Races("Date_from")&">"&Today&" ORDER BY Date_to")
%>
		<tr>
			<td width=998 height=134 valign=middle><span class="style6"><img src="images/logo.png" width="290" height="119" align="absbottom"></span></td>
			<td width=350 height=134 rowspan=3 valign=top>
<%
	Count=0
	Do Until Races.EOF
	If Count=10 Then Exit Do
%>
				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1"><%=Races("Season")%>&nbsp;<%=Races("Grand_Prix")%><br><span class="style2"><%=Races("City")%>&nbsp;-&nbsp;<%=Races("Circuit")%></span><br><%=Day(Races("Date_from"))%><% If Month(Races("Date_from"))<>Month(Races("Date_to")) Then Response.Write("&nbsp;"&MonthName(Month(Races("Date_from")))) End If%>-<%=Day(Races("Date_to"))%>&nbsp;<%=MonthName(Month(Races("Date_to")),True)%>&nbsp;<%=Year(Races("Date_to"))%></div></td>
                    <td width=110 height=80><img src="images/<%=Races("flag")%>-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>
<%
	Count=Count+1
	Races.MoveNext
		Loop
	Races.Close
%>
			</td>
		</tr>
		<tr>
			<td height=40>&nbsp;:: Home || Race Packages || Race Tickets || Contact Us :: <input name=login type=text> <input name=password type=password> :: Login || Register ::</td>
		</tr>
		<tr>
			<td>
			<table width="990" height=700 cellpadding="0" cellspacing="0">
              <tr>
                <td width=790 height=248 valign=top background="images/<%=RaceNext("season")-1%>-<%=RaceNext("flag")%>.jpg"><div align="left">
                  <p>&nbsp;</p>
                  <p>&nbsp;<span id="countdown"></span> until Practice 1</p>
                </div></td>
                <td width=200 height=248 valign=top background="images/<%=RaceNext("season")-1%>-<%=RaceNext("flag")%>-winner.jpg">&nbsp;</td>
              </tr>
              <tr>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
              </tr>
              <tr>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
              </tr>
            </table>
			</td>
		</tr>
<%
	RaceNext.Close
%>
<!-- InstanceEndEditable -->
		<tr>
			<td>footer</td>
			<td><div align="center"><span class="style1">List All Race Weekends</span></div></td>
		</tr>
	</table>
    <div align="center"></div>
</body>
<!-- InstanceEnd --></html>

Open in new window

Graeme McGilvray

ASKER
The Format for DateTime is General Date 19/06/2012 5:45:32 PM
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Big Monty

can you copy and paste the source code (do a view source to get it)?
Graeme McGilvray

ASKER
<html><!-- InstanceBegin template="/Templates/template.dwt.asp" codeOutsideHTMLIsLocked="false" -->
<head>
<title>Aus F1 Tours.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
body {
	background-color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url();
}
a:link {
	color: #CCCCCC;
}
a:visited {
	color: #CCCCCC;
}
.style1 {color: #000000}
.style2 {font-size: 10px}
.style6 {
	font-size: 50px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
-->
</style>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-53350090-1', 'auto');
  ga('send', 'pageview');
</script>
<script>
function doTimer() {
// set the date we're counting down to
var target_date = new Date("10:00:00 AM")
 
// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s";  
 
}, 1000);
} 
</script>
</head>
<body onload="doTimer()">
	<table width=1346 border=0 align="center" cellpadding=0 cellspacing=0 background="images/formula_1_bg.jpg">
<!-- InstanceBeginEditable name="body" -->

		<tr>
			<td width=998 height=134 valign=middle><span class="style6"><img src="images/logo.png" width="290" height="119" align="absbottom"></span></td>
			<td width=350 height=134 rowspan=3 valign=top>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Belgian Grand Prix<br><span class="style2">Spa&nbsp;-&nbsp;Spa Francorchamps</span><br>22-24&nbsp;Aug&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/belgium-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Italian Grand Prix<br><span class="style2">Monza&nbsp;-&nbsp;Autodromo Nazionale</span><br>5-7&nbsp;Sep&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/italy-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Singapore Grand Prix<br><span class="style2">Singapore&nbsp;-&nbsp;Singapore Streets</span><br>19-21&nbsp;Sep&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/singapore-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Japanese Grand Prix<br><span class="style2">Suzuka City&nbsp;-&nbsp;Suzuka</span><br>3-5&nbsp;Oct&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/japan-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Russian Grand Prix<br><span class="style2">Sochi&nbsp;-&nbsp;Sochi Autodrom</span><br>10-12&nbsp;Oct&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/russia-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;US Grand Prix<br><span class="style2">Austin&nbsp;-&nbsp;Circuit of The Americas</span><br>1-3&nbsp;Nov&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/usa-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Brazilian Grand Prix<br><span class="style2">Interlagos&nbsp;-&nbsp;Autodromo Interlagos</span><br>8-10&nbsp;Nov&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/brazil-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2014&nbsp;Abu Dhabi Grand Prix<br><span class="style2">Abu Dhabi&nbsp;-&nbsp;Yas Marina</span><br>21-23&nbsp;Nov&nbsp;2014</div></td>
                    <td width=110 height=80><img src="images/uae-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2015&nbsp;Australian Grand Prix<br><span class="style2">Melbourne&nbsp;-&nbsp;Albert Park</span><br>13-15&nbsp;Mar&nbsp;2015</div></td>
                    <td width=110 height=80><img src="images/australia-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="middle"><div align="left" class="style1">2015&nbsp;Spanish Grand Prix<br><span class="style2">Barcelona&nbsp;-&nbsp;Circuit du Catalunya</span><br>8-10&nbsp;May&nbsp;2015</div></td>
                    <td width=110 height=80><img src="images/spain-flag-icon.png" width="110" height="80"></td>
                  </tr>
                </table>

			</td>
		</tr>
		<tr>
			<td height=40>&nbsp;:: Home || Race Packages || Race Tickets || Contact Us :: <input name=login type=text> <input name=password type=password> :: Login || Register ::</td>
		</tr>
		<tr>
			<td>
			<table width="990" height=700 cellpadding="0" cellspacing="0">
              <tr>
                <td width=790 height=248 valign=top background="images/2013-belgium.jpg"><div align="left">
                  <p>&nbsp;</p>
                  <p>&nbsp;<span id="countdown"></span> until Practice 1</p>
                </div></td>
                <td width=200 height=248 valign=top background="images/2013-belgium-winner.jpg">&nbsp;</td>
              </tr>
              <tr>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
              </tr>
              <tr>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
              </tr>
            </table>
			</td>
		</tr>

<!-- InstanceEndEditable -->
		<tr>
			<td>footer</td>
			<td><div align="center"><span class="style1">List All Race Weekends</span></div></td>
		</tr>
	</table>
    <div align="center"></div>
</body>
<!-- InstanceEnd --></html>

Open in new window

Big Monty

it seems

NextSession("Session_DateTime")

is just a time, that's why you're getting the NaN output.

does the database value contain an actual date or is just a time?
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Scott Fell

Just use

var target_date = new Date("<%= year(rs("date"))%>,<%= month(rs("date"))%>,<%= day(rs("date"))%>,<%= hour(rs("date"))%>,<%= minute(rs("date"))%>")

Open in new window

Graeme McGilvray

ASKER
Big Monty - its just showing a time

Should I add another column for a date too??
Big Monty

well, it depends, do you just want the countdown for hours/minutes/seconds or do you want the countdown to include days/weeks/years (or any combo of those options)?
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Graeme McGilvray

ASKER
days/hours/mintues/seconds please
Big Monty

then yes, you can either add another column for the date field or preferably, just change the Session_DateTime field to be a Date/Time field (I would go with this option), and then update your data to include a date in as well.

if you have a lot of data that you don't want to / can't update, you could always put in some code that'll just convert the time to include todays date in it. That way you can only worry about new data going forward and adding in the date for new records. depends on what you're requirements are
Graeme McGilvray

ASKER
whilst waiting for you posting, I have added in a separate date field :P
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
Big Monty

while that may be the easy solution now, I strongly recommend changing the Session_DateTime field to Date/Time as that will be less maintenance in the long run.

are you open to doing it that way, or is there just too much data to update?
Graeme McGilvray

ASKER
Yeah defiantely open to it! :)

Fire away sir!
Big Monty

ok, then follow the steps listed here and ask any questions you have. once you have the proper data in the database, no code changes should be necessary
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Graeme McGilvray

ASKER
ok so I have updated the fields for dates and time in it, the format is general date

output on page: NaNd NaNh NaNm NaNs until Practice 1

http://www.ausf1tours.com/index.asp
Big Monty

looks like the format of the date is causing issues, try updating your javascript to the following:

function doTimer() {
// set the date we're counting down to
var dateString = new Date("<%=NextSession("Session_DateTime")%>");

var target_date = new Date(parseInt(dateString.getMonth() + 1) + "/" + dateString.getDay() + "/" + dateString.getFullYear() );

Open in new window

Graeme McGilvray

ASKER
Hi Big Monty, have just replaced my code with yours, still same output, NaN
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
Big Monty

can you post the code you're using?
Graeme McGilvray

ASKER
Sorry! sorta got distracted by a lady! :P

Here we are:
<html><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<title>Aus F1 Tours.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<%
	Dim oConn

	Set oConn=Server.CreateObject("ADODB.Connection")
	Set Enquiry=Server.CreateObject("ADODB.Recordset")

	oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("core/core.mdb")

	SESSION("cn")="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("core/core.mdb")&";Persist Security Info=False"
	
	Today=Day(date())&"/"&Month(date())&"/"&Year(date())
	
	Set RaceNext=oConn.Execute("SELECT * FROM race_weekends WHERE confirmed=YES AND Date_from>"&Today)
	Set NextSession=oConn.Execute("SELECT * FROM race_sessions WHERE GP_ID="&RaceNext("ID"))
	Set Races=oConn.Execute("SELECT * FROM race_weekends WHERE confirmed=YES AND Date_from>"&Today&" ORDER BY Date_to")
'	Response.Write("SELECT * FROM race_weekends WHERE confirmed=YES AND "&Races("Date_from")&">"&Today&" ORDER BY Date_to")
%>
<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
body {
	background-color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url();
}
a:link {
	color: #000000;
}
a:visited {
	color: #000000;
}
.style1 {color: #000000}
.style2 {font-size: 10px}
.style6 {
	font-size: 50px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
a:active {
	color: #000000;
}
.style7 {color: #FFFFFF}
-->
</style>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-53350090-1', 'auto');
  ga('send', 'pageview');
</script>
<script>
function doTimer() {
// set the date we're counting down to
var dateString = new Date("<%=NextSession("Session_DateTime")%>");

var target_date = new Date(parseInt(dateString.getMonth() + 1) + "/" + dateString.getDay() + "/" + dateString.getFullYear() );

// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s";  
 
}, 1000);
} 
</script>
</head>
<body onload="doTimer()">
	<table width=1346 border=0 align="center" cellpadding=0 cellspacing=0 background="images/formula_1_bg.jpg">
		<tr>
			<td width=998 height=120 valign=middle><span class="style6"><img src="images/logo.png" width="290" height="119" align="absbottom"></span></td>
			<td width=350 rowspan=3 valign=top>
<%
	Count=0
	Do Until Races.EOF
	If Count=10 Then Exit Do
%>
				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1"><%=Year(Races("date_from"))%>&nbsp;<%=Races("Grand_Prix")%><br><span class="style2"><%=Races("City")%> - <%=Races("Circuit")%></span><br><%=Day(Races("Date_from"))%>-<%=Day(Races("Date_to"))%>&nbsp;<%=MonthName(Month(Races("Date_to")))%></div></td>
                    <td width=108><img src="/images/<%=Races("flag")%>-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>
<%
	Count=Count+1
	Races.MoveNext
		Loop
	Races.Close
%>
        	</td>
		</tr>
	<form name=BodyForm method=POST action=process.asp id=BodyForm>
		<tr>
			<td height=40>&nbsp;:: Home || Race Packages || Race Tickets || Contact Us :: <input name=login type=text> <input name=password type=password> :: Login || Register ::</td>
		</tr>
<!-- InstanceBeginEditable name="body" -->
		<tr>
			<td valign="top">
			<table width="990" height=100% cellpadding="0" cellspacing="0">
              <tr>
                <td width=790 height=248 valign=top background="images/<%=YEAR(RaceNext("DATE_FROM"))-1%>-<%=RaceNext("flag")%>.jpg"><div align="left"><p>&nbsp;</p><p>&nbsp;<span id="countdown"></span> until Practice 1</p></div></td>
                <td width=200 height=248 valign=top background="images/<%=YEAR(RaceNext("DATE_FROM"))-1%>-<%=RaceNext("flag")%>-winner.jpg">&nbsp;</td>
              </tr>
              <tr>
                <td colspan=2><br>
				  <table width="25%" height=300 cellpadding="0" cellspacing="0">
				    <tr>
					  <td valign="top"><div align="center"><h2>7-Day Budget Package<br>from $3999pp*</h2></div></td>
				    </tr>
				    <tr>
					  <td valign="top">includes:</td>
				    </tr>
				    <tr>
					  <td valign="top">-Return Economy Airfares</td>
				    </tr>
				    <tr>
					  <td valign="top">-General Admin Weekend Ticket </td>
				    </tr>
				    <tr>
					  <td valign="top">-2-Berth Campervan*</td>
				    </tr>
				    <tr>
					  <td valign="top">-Camping Grounds Accomodation</td>
				    </tr>
				    <tr>
					  <td valign="top">-Track Day*</td>
				    </tr>
				    <tr>
					  <td valign="top">-Shirt and Cap of your favorite Driver or Team*</td>
				    </tr>
       			  </table>
				</td>
              </tr>
            </table>
			</td>
		</tr>
<%
	RaceNext.Close
%>
<!-- InstanceEndEditable -->
	</form>
		<tr>
			<td>footer </td>
			<td><div align="center"><span class="style7">List All Race Weekends</span></div></td>
		</tr>
	</table>
</body>
<!-- InstanceEnd --></html>

Open in new window

Big Monty

happens to the best of us :)

when you do a view source of the page, what does the variable datestring equal?

var dateString = new Date("<%=NextSession("Session_DateTime")%>");
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Graeme McGilvray

ASKER
This is from source

var dateString = new Date("22/08/2014 10:00:00 AM");
Big Monty

try this for your code:

<html><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<title>Aus F1 Tours.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<%
	Dim oConn

	Set oConn=Server.CreateObject("ADODB.Connection")
	Set Enquiry=Server.CreateObject("ADODB.Recordset")

	oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("core/core.mdb")

	SESSION("cn")="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("core/core.mdb")&";Persist Security Info=False"
	
	Today=Day(date())&"/"&Month(date())&"/"&Year(date())
	
	Set RaceNext=oConn.Execute("SELECT * FROM race_weekends WHERE confirmed=YES AND Date_from>"&Today)
	Set NextSession=oConn.Execute("SELECT * FROM race_sessions WHERE GP_ID="&RaceNext("ID"))
	Set Races=oConn.Execute("SELECT * FROM race_weekends WHERE confirmed=YES AND Date_from>"&Today&" ORDER BY Date_to")
'	Response.Write("SELECT * FROM race_weekends WHERE confirmed=YES AND "&Races("Date_from")&">"&Today&" ORDER BY Date_to")

         dim startCounter : startCounter = Now()
         if not NextSession.BOF and not NextSession.EOF then 
               startCounter = NextSession("Session_DateTime")
                startCounter = Month( startCounter ) & "/" & Day( startCounter ) & "/" & Year( startCounter ) & " " & Hour( startCounter ) & ":" & Minute( startCounter ) & ":" & Second( startCounter )
          end if

 
%>
<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
body {
	background-color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url();
}
a:link {
	color: #000000;
}
a:visited {
	color: #000000;
}
.style1 {color: #000000}
.style2 {font-size: 10px}
.style6 {
	font-size: 50px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
a:active {
	color: #000000;
}
.style7 {color: #FFFFFF}
-->
</style>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-53350090-1', 'auto');
  ga('send', 'pageview');
</script>
<script>
function doTimer() {
// set the date we're counting down to
var dateString = new Date("<%=startCounter%>");

var target_date = new Date(parseInt(dateString.getMonth() + 1) + "/" + dateString.getDay() + "/" + dateString.getFullYear() );

// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s";  
 
}, 1000);
} 
</script>
</head>
<body onload="doTimer()">
	<table width=1346 border=0 align="center" cellpadding=0 cellspacing=0 background="images/formula_1_bg.jpg">
		<tr>
			<td width=998 height=120 valign=middle><span class="style6"><img src="images/logo.png" width="290" height="119" align="absbottom"></span></td>
			<td width=350 rowspan=3 valign=top>
<%
	Count=0
	Do Until Races.EOF
	If Count=10 Then Exit Do
%>
				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1"><%=Year(Races("date_from"))%>&nbsp;<%=Races("Grand_Prix")%><br><span class="style2"><%=Races("City")%> - <%=Races("Circuit")%></span><br><%=Day(Races("Date_from"))%>-<%=Day(Races("Date_to"))%>&nbsp;<%=MonthName(Month(Races("Date_to")))%></div></td>
                    <td width=108><img src="/images/<%=Races("flag")%>-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>
<%
	Count=Count+1
	Races.MoveNext
		Loop
	Races.Close
%>
        	</td>
		</tr>
	<form name=BodyForm method=POST action=process.asp id=BodyForm>
		<tr>
			<td height=40>&nbsp;:: Home || Race Packages || Race Tickets || Contact Us :: <input name=login type=text> <input name=password type=password> :: Login || Register ::</td>
		</tr>
<!-- InstanceBeginEditable name="body" -->
		<tr>
			<td valign="top">
			<table width="990" height=100% cellpadding="0" cellspacing="0">
              <tr>
                <td width=790 height=248 valign=top background="images/<%=YEAR(RaceNext("DATE_FROM"))-1%>-<%=RaceNext("flag")%>.jpg"><div align="left"><p>&nbsp;</p><p>&nbsp;<span id="countdown"></span> until Practice 1</p></div></td>
                <td width=200 height=248 valign=top background="images/<%=YEAR(RaceNext("DATE_FROM"))-1%>-<%=RaceNext("flag")%>-winner.jpg">&nbsp;</td>
              </tr>
              <tr>
                <td colspan=2><br>
				  <table width="25%" height=300 cellpadding="0" cellspacing="0">
				    <tr>
					  <td valign="top"><div align="center"><h2>7-Day Budget Package<br>from $3999pp*</h2></div></td>
				    </tr>
				    <tr>
					  <td valign="top">includes:</td>
				    </tr>
				    <tr>
					  <td valign="top">-Return Economy Airfares</td>
				    </tr>
				    <tr>
					  <td valign="top">-General Admin Weekend Ticket </td>
				    </tr>
				    <tr>
					  <td valign="top">-2-Berth Campervan*</td>
				    </tr>
				    <tr>
					  <td valign="top">-Camping Grounds Accomodation</td>
				    </tr>
				    <tr>
					  <td valign="top">-Track Day*</td>
				    </tr>
				    <tr>
					  <td valign="top">-Shirt and Cap of your favorite Driver or Team*</td>
				    </tr>
       			  </table>
				</td>
              </tr>
            </table>
			</td>
		</tr>
<%
	RaceNext.Close
%>
<!-- InstanceEndEditable -->
	</form>
		<tr>
			<td>footer </td>
			<td><div align="center"><span class="style7">List All Race Weekends</span></div></td>
		</tr>
	</table>
</body>
<!-- InstanceEnd --></html>

Open in new window

Graeme McGilvray

ASKER
Hiya, i got numbers!! however they are counting up :P

-16d -23h -15m -56s until Practice 1
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
Big Monty

can you post your latest code?
Graeme McGilvray

ASKER
<html><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<title>Aus F1 Tours.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
body {
	background-color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url();
}
a:link {
	color: #000000;
}
a:visited {
	color: #000000;
}
.style1 {color: #000000}
.style2 {font-size: 10px}
.style6 {
	font-size: 50px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
a:active {
	color: #000000;
}
.style7 {color: #FFFFFF}
-->
</style>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-53350090-1', 'auto');
  ga('send', 'pageview');
</script>
<script>
function doTimer() {
// set the date we're counting down to
var dateString = new Date("8/22/2014 10:0:0");

var target_date = new Date(parseInt(dateString.getMonth() + 1) + "/" + dateString.getDay() + "/" + dateString.getFullYear() );

// variables for time units
var days, hours, minutes, seconds;
 
// get tag element
var countdown = document.getElementById("countdown");
 
// update the tag with id "countdown" every 1 second
setInterval(function () {
 
    // find the amount of "seconds" between now and target
    var current_date = new Date().getTime();
    var seconds_left = (target_date - current_date) / 1000;
 
    // do some time calculations
    days = parseInt(seconds_left / 86400);
    seconds_left = seconds_left % 86400;
     
    hours = parseInt(seconds_left / 3600);
    seconds_left = seconds_left % 3600;
     
    minutes = parseInt(seconds_left / 60);
    seconds = parseInt(seconds_left % 60);
    // format countdown string + set tag value
    countdown.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s";  
 
}, 1000);
} 
</script>
</head>
<body onload="doTimer()">
	<table width=1346 border=0 align="center" cellpadding=0 cellspacing=0 background="images/formula_1_bg.jpg">
		<tr>
			<td width=998 height=120 valign=middle><span class="style6"><img src="images/logo.png" width="290" height="119" align="absbottom"></span></td>
			<td width=350 rowspan=3 valign=top>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Belgian Grand Prix<br><span class="style2">Spa - Spa Francorchamps</span><br>22-24&nbsp;August</div></td>
                    <td width=108><img src="/images/belgium-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Italian Grand Prix<br><span class="style2">Monza - Autodromo Nazionale</span><br>5-7&nbsp;September</div></td>
                    <td width=108><img src="/images/italy-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Singapore Grand Prix<br><span class="style2">Singapore - Singapore Streets</span><br>19-21&nbsp;September</div></td>
                    <td width=108><img src="/images/singapore-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Japanese Grand Prix<br><span class="style2">Suzuka City - Suzuka</span><br>3-5&nbsp;October</div></td>
                    <td width=108><img src="/images/japan-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Russian Grand Prix<br><span class="style2">Sochi - Sochi Autodrom</span><br>10-12&nbsp;October</div></td>
                    <td width=108><img src="/images/russia-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;US Grand Prix<br><span class="style2">Austin - Circuit of The Americas</span><br>1-3&nbsp;November</div></td>
                    <td width=108><img src="/images/usa-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Brazilian Grand Prix<br><span class="style2">Interlagos - Autodromo Interlagos</span><br>8-10&nbsp;November</div></td>
                    <td width=108><img src="/images/brazil-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2014&nbsp;Abu Dhabi Grand Prix<br><span class="style2">Abu Dhabi - Yas Marina</span><br>21-23&nbsp;November</div></td>
                    <td width=108><img src="/images/uae-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2015&nbsp;Australian Grand Prix<br><span class="style2">Melbourne - Albert Park</span><br>13-15&nbsp;March</div></td>
                    <td width=108><img src="/images/australia-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

				<table width=100%>
                  <tr>
                    <td width=250 valign="top"><div align="left" class="style1">2015&nbsp;Spanish Grand Prix<br><span class="style2">Barcelona - Circuit du Catalunya</span><br>8-10&nbsp;May</div></td>
                    <td width=108><img src="/images/spain-flag-icon.png" width="100%" height="80%"></td>
                  </tr>
                </table>

        	</td>
		</tr>
	<form name=BodyForm method=POST action=process.asp id=BodyForm>
		<tr>
			<td height=40>&nbsp;:: Home || Race Packages || Race Tickets || Contact Us :: <input name=login type=text> <input name=password type=password> :: Login || Register ::</td>
		</tr>
<!-- InstanceBeginEditable name="body" -->
		<tr>
			<td valign="top">
			<table width="990" height=100% cellpadding="0" cellspacing="0">
              <tr>
                <td width=790 height=248 valign=top background="images/2013-belgium.jpg"><div align="left"><p>&nbsp;</p><p>&nbsp;<span id="countdown"></span> until Practice 1</p></div></td>
                <td width=200 height=248 valign=top background="images/2013-belgium-winner.jpg">&nbsp;</td>
              </tr>
              <tr>
                <td colspan=2><br>
				  <table width="25%" height=300 cellpadding="0" cellspacing="0">
				    <tr>
					  <td valign="top"><div align="center"><h2>7-Day Budget Package<br>from $3999pp*</h2></div></td>
				    </tr>
				    <tr>
					  <td valign="top">includes:</td>
				    </tr>
				    <tr>
					  <td valign="top">-Return Economy Airfares</td>
				    </tr>
				    <tr>
					  <td valign="top">-General Admin Weekend Ticket </td>
				    </tr>
				    <tr>
					  <td valign="top">-2-Berth Campervan*</td>
				    </tr>
				    <tr>
					  <td valign="top">-Camping Grounds Accomodation</td>
				    </tr>
				    <tr>
					  <td valign="top">-Track Day*</td>
				    </tr>
				    <tr>
					  <td valign="top">-Shirt and Cap of your favorite Driver or Team*</td>
				    </tr>
       			  </table>
				</td>
              </tr>
            </table>
			</td>
		</tr>

<!-- InstanceEndEditable -->
	</form>
		<tr>
			<td>footer </td>
			<td><div align="center"><span class="style7">List All Race Weekends</span></div></td>
		</tr>
	</table>
</body>
<!-- InstanceEnd --></html>

Open in new window

ASKER CERTIFIED SOLUTION
Big Monty

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Graeme McGilvray

ASKER
Works a treat! :) Thank you very much! :)
âš¡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.