Tagged Questions

3
votes
5answers
149 views

How can i run php script with timer?

I have foreach functions that print students names $names = array("Alex","Brad","Tom"); foreach($names as $name) { echo "$name <br />"; sleep(3); } How can i print each name, each 3 ...
2
votes
2answers
91 views

Keeping a countdown timer synchronized across multiple browsers via a date/time stored on the database

I want to try and keep a timer synchronized across multiple browsers/clients which is counting down to a date stored within the database. If the date changes for some reason then I will need to update ...
2
votes
2answers
261 views

PHP/Javascript countdown script

Note * I want some one to fix it and tell me how they did it not tips on how to do it or coments about php nd java mixed in it * I have a countdown script that is working, but when it hits the target ...
2
votes
1answer
272 views

live date time countdown problem from php/mysql database

I have php site and mysql database with date/time field with date/time in future. I need to count down from that future time till now. Example: Jimmy 31.12.2011 21:00:00 birthday Mary 21.11.2011 ...
1
vote
2answers
96 views

Javascript countdown and PHP date

Here is a JavaScript that I use to generate some countdowns, my problem is that the JavaScript is using the date from the users PC, is there any way to modify the script to use something like : ...
1
vote
1answer
109 views

How to prevent timer reset on page refresh?

I'm using jQuery countdown in a script, but I can't figure out how to prevent the timer from resetting on a page reload. I'm hoping someone knows how or can give me a suggestion? I'm using PHP, so I ...
1
vote
1answer
53 views

Jquery multiple coundown

I found this script $(document).ready(function(){ $('tr[id]').each(function () { var $this = $(this); var count = parseInt($this.attr("id")); countdown = setInterval(function(){ ...
1
vote
1answer
425 views

Multiple countdown timers using a PHP loop

What I'm trying to do is output data from my database using PHP. Alongside this data I'd like to include a countdown timer using the data from my database. Naturally, the timer is done using ...
1
vote
1answer
156 views

Product promotion countdown

I'm new to OpenCart and I'm trying to build an ecommerce website. I want to show the time left for my promotions and I don't know how. When I have a product with a promotion I want to show the time ...
1
vote
2answers
139 views

php “countdown til” and “since time” GMT UTC time function

I'm working with a function I found to do this, but I'm trying to make it work with a GMT utc timestamp: EDIT: Maybe my issue is with how i'm "converting" the user input time to GMT... I was doing ...
1
vote
1answer
304 views

PHP countdown timer problem using javascript

I'm using php 5.3.6 and mysql 5.1.54 with apache webserver windows edition on my local pc. And my web host have php 4.0.2 and mysql 4.1.2 with apache webserver linux edition. I'm using a script and ...
1
vote
4answers
571 views

PHP JavaScript Countdown Timer

I need to make a countdown timer that displays a specific number of minutes and seconds counting down - not a countdown to a certain date. And depending on a variable, change these numbers. So for ...
1
vote
1answer
382 views

jQuery Countdown with use of PHP & MySQL

The idea: To create a countdown to show days or hours left until some event (no minutes or seconds are required)... I have MySQL database which stores data used by countdown: id, date & ...
1
vote
5answers
115 views

Countdown variable across many pages

I have a demo website for an e-test where each student is allowed 15 minutes for the whole exam (which comprises 5 subjects, each with 10 questions). I want it that, immediately a student clicks START ...
1
vote
1answer
974 views

Show Redirecting In.. CountDown Timer PHP

I have this code so far that redirects the user after 5 seconds to the correct URL: <?php $url = $_GET['url']; header("refresh:5;url=$url"); include('ads.php'); ?> Please could you tell me ...
1
vote
6answers
451 views

How to make a countdown using PHP

Im creating a website for my brothers wedding. And so far all is going well. However, he wants a countdown to the wedding on the homepage; Time left until the wedding: X months, X days, X hours. I ...
1
vote
4answers
204 views

php with javascript timer - what happen when user leaves the page before the timer is zero

i have a game whene the user can win something. as soon as he wins he has 60 seconds to fill in his adress name etcotherwise he lose his price and someone else can take it. when he not fills in the ...
1
vote
3answers
130 views

PHP : Delayed database request also without live page

So for example I click a button what will send something to the database after 1 minutes, but I want to send it also if I leave the page :) So if I leave the page when 30 seconds left from the 1 ...
0
votes
1answer
99 views

Passing client data to server-side methods

I have a JavaScript file that checks for bids using json data. Now the problem I have is the plugin for the countdown has an onExpiry function that won't let you pass parameters, when u do the ...
0
votes
2answers
43 views

javascript recurrent countdown

i have a question regarding a countdown timer. i have the below code that displays a visual countdown. my problem is that it resets everytime i refresh the page , its client-side. is there a way to ...
0
votes
3answers
126 views

Javascript count down timer in a MYSQL column

I have a MYSQL table and I would like to place a countdown column for each result in the table. The timer should count from the current time to the the column ending time(a column within the same ...
0
votes
1answer
49 views

countdown timer with servertime php

I want to set up countdown to my store, but countdown date with start and close must assign using php. that means server date of end which i can specify manually and start date will come using php ...
0
votes
1answer
128 views

Jquery Countdown timer fails in IE

Im using a jquery countdown timer mixed with php. here is an example of the code. <?php $time = new DateTime($buy->{$i}->end_date); $deal_time = ...
0
votes
2answers
79 views

Php Counting seconds to the nearest quarter-hour

I've got an application that requires the time until an event (in seconds) to display a countdown timer. The countdown timer should be counting down 20 minutes at a time. However, I need to use php to ...
0
votes
1answer
79 views

pause countdown timer javascript php

function setCountDown () { seconds--; if (seconds < 0){ minutes--; seconds = 59 } if (minutes < 0){ hours--; minutes = 59 } if (hours < 0){ days--; ...
0
votes
0answers
158 views

Jquery Countdown.. Get time from php?

I'm using a popular jQuery countdown script that has built in servertime sync. However I want to sync with server first not last as I also check the day and time. ...
0
votes
2answers
100 views

simple php javascript countdown to DATETIME

I have a DATETIME date in a mysql field, and i'd like the simplest timer displayed on my PHP page counting down to that. The timer will never be over a few minutes. I'm guessing some kind of ...
0
votes
1answer
116 views

jQuery Countdown plugin break on IE and Safari

I'm using jQuery Countdown plugin with multiple instances on one page <div class="TimeLeft"> <?php echo counterDate($dl['end'][0]); //YYYY, MM, DD ?> </div> <div ...
0
votes
0answers
43 views

jquery_countdown - specify start and end times?

I'm using the jquery_countdown script in conjunction with PHP. I'm trying to countdown three minutes from a time value I'm pulling from the database, but I can't figure out how to designate a ...
0
votes
1answer
219 views

Parse date from javascript countdown (jQuery plugin)

I'm trying to parse "Time Left To Buy" from a Groupon clone. Don't worry, everything is legal. The Javascript looks like var untilDate = new Date(1316206740000); $("#wlt-DealTimeLeft ...
0
votes
1answer
151 views

live date time countdown problem

I need date and time countdown function that can be reused many times. My records are stored in a MySQL database and this must be on every record. My start date is: $date = date("Y-m-d H:i:s", ...
0
votes
2answers
403 views

Jquery Countdown Server sync issue

I'm trying to create a countdown for an event. I'm using Jquery Countdown I have this code: $(function () { var fecha = new Date("July 30, 2011 00:00:00"); ...
0
votes
1answer
129 views

problem jquery countdown only show timer for product1, but not show product2, .. n product

<script type="text/javascript"> $(function () { var id = $("#id").val(); var endDate = $("#endtime_" + id).val(); ...
0
votes
1answer
123 views

PHP Countdown Timer Problem?

I have coded a simple PHP Countdown Timer using this code: list($date,$time)=explode(" ",$compounddate); list($thour,$tminute,$tsecond)=explode(":",$time); ...
0
votes
2answers
109 views

Unable to submit form using JQuery

So the scenario is on my page I have a form along with a countdown timer. If the countdown timer reaches 0:00 I have a statement which activates and is supposed to submit the form as it stands. here ...
0
votes
2answers
152 views

Count down to EST Hour everyday?

How would i count down to a specific hour every day, say 12PM EST time... So that it would countdown as 1 Hour 56 Minutes until 12PM / Lunch? I'm looking for something short and simple, no need for ...
0
votes
1answer
390 views

jquery multiple keith-wood countdown plugin on one page

I am using the jQuery Keith-Wood plugin for showing one countdown timer on my page, and it works fine. Now I want to display multiple countdowns, but it doesn't seem to work (it works only for the ...
0
votes
2answers
247 views

HTML DOM Parser can't get JavaScript countdown

I'm using HTML DOM Parser from http://simplehtmldom.sourceforge.net/ then I have problem that can't get text from countdown JavaScript in source link. code from source: (this is Countdown ...
0
votes
1answer
551 views

Javascript Stopwatch to MySQL Database

So what I need to do is have a start time and an end time on the html page that I am creating. It is so that the technician can start the clock once he begins work, and when he ends that day he hits ...
0
votes
1answer
174 views

Countdown based on MySQL entry

I have a database that logs the date and time a song was played in a format like 2011-04-13 17:55:46. It also logs the length of the song in milliseconds. How would I make a live countdown for the ...
0
votes
0answers
522 views

jquery countdown plugin

At first sorry for my english. I have a problem with your jquery countdown plugin. I want use it for an 1 cent auction site. I post my code so you can see it: With this code block i make differents ...
0
votes
1answer
312 views

Real time countdown timer that gets updated by user action. Connected to the database. Implementation?

How would i implement such a timer? Please take a moment to have a look at this countdown timer. http://bigdeal.com (see one of the products) What would you do with the db. How would you intergrate ...
0
votes
1answer
394 views

How to create a Event CountDown Timer?

Hi How to create a CountDown Timer? Is there any good tutorial about it? PHP and JQuery based. thanks.
0
votes
1answer
215 views

PHP/SQL Cycle items every x minutes

I have a friend who runs an online auction website. He currently has a featured items section on the homepage that he wants to have cycle an item every X amount of minute. The site runs off a MySQL ...
-5
votes
1answer
59 views

php static countdown with filemtime [closed]

A file updates every 60 minutes. I would like to have a countdown for the next update from comparing filemtime with time. I'm getting a brain fart dealing with time