Forum: JavaScript / DHTML / AJAX Oct 8th, 2009 |
| Replies: 6 Views: 457 Hey.
Easiest way to do that is to just write a function, and have that function change all the pictures.
Like:
function SetLinkBG(pActive)
{
var links = [
... |
Forum: JavaScript / DHTML / AJAX Oct 25th, 2008 |
| Replies: 6 Views: 924 The ideal solution would be to set up a daily execution of a PHP script on the same server that hosts you website. But to do that you need access to that computer. Do you have such access?
The... |
Forum: JavaScript / DHTML / AJAX Oct 25th, 2008 |
| Replies: 6 Views: 924 Ok.
Then all you have to is set up a scheduled execution of your PHP code.
What I would do is set up a cron job.
Cron is a Unix program that executes commands at set intervals.
Windows has a... |
Forum: JavaScript / DHTML / AJAX Oct 25th, 2008 |
| Replies: 6 Views: 924 Hi.
How are you sending the text messages?
(I am assuming this is a message meant to be sent to your client's phone?)
If that is the case, you are probably going to have to use some external... |
Forum: JavaScript / DHTML / AJAX Sep 14th, 2008 |
| Replies: 2 Views: 1,580 Hi.
I see two problems.
First, the <select> box is missing the ID attribute.
IE incorrectly uses the name attribute when an ID tag is missing, which explains why this works in IE.
Also, the... |