I have a site (Server 2008, IIS 7) where we only allow certain IP's to access the admin of the site. One of the clients who need to get into the admin has a dynamic IP and is causing us to have to...
My company is trying to get our Google Feed to accept information for Red Laser scanning/comparison of products. I believe that I have all of the information that is needed for this, the mpn and the...
What is your error saying exactly? Just that it's not sending or that something is breaking the code? Cause looking at your code, it should be like this, correct?
Try that and see if it works. I find that putting quotes around the variables tends to cause more problems than it's worth, try and practice keeping your...
Not to nit-pick, but why do you have a javascript call at your $recipient variable? I would figure that having another set of " would break your code and wouldn't get past that point. Besides, from...
I have an unordered list that contains the list of categories for my work's site. Every now and then we want to emphasis a certain category with an image or icon, so we put that image in an anchor...
I'm trying to make my timeclock for work, and the Date object in Javascript is giving me wrong values. I made sure that the time on my computer is the actual time, day and year, yet I either get...
Actually, using a plugin for FireFox called YSlow, it has a suggestion in there to cache your javascript and stylesheets using php. I've done it for my work's site, and it loads up pretty quick,...
The main reason is because you have a loop in your setInterval() function. The setInterval is basically like a continuous timer that does something every, say 5 seconds. That's why I didn't have a...
Granted, this is my own little simple way of doing this. Just like most things in life, everyone has their own way of doing things. So, I'll share mine with you, and it involves using jQuery, which...