Thanks, for the help... I swear I tried that before and it didn't work - now it does! That must mean I messed something up before. Anyway, ragarding purple stars and MVP's...it may sound stupid but I don't even know what that stuff is. If you look over the threads you'll see I always write back...
Hi All,
This has to be simple and I'm just missing something...I need to get the epoch time for my PC clock. I've been messing with this code:
nd = new Date();
ep = nd.getTime();
document.write(ep);
This works fine, however, I need the current epoch time excluding the seconds and...
Hi!
I'm messing with the following code:
function check(){
var connect_img=new Image();
connect_img.onload=good_connect;
connect_img.onerror=bad_connect;
connect_img.src="http://url/test.gif"
}
checkconnect=setInterval('check()',10000);
For the lines...
Hi All,
I've got a java applet that parses XML.. Works just fine embeded in IE while in normal operation. However, when running in kiosk mode I get an error: SAXException. Thought it might be some type of rights problem but I've adjusted just about everything I can think of - even put the url...
Hey all,
I've got a string like this:
$play_days="0123456";
I need to search for individual numbers in the string. If the number is not found, I simply echo a statement. Everything is fine except when the number found resides in the zero position in the string. I've tried the following...
Ok, I think this will be an easy one...
I'm piecing together a variable like this:
cb=ikey+"_cb";
This variable ends up being the name of some checkboxes in a form. I want to place the variable in the following alert statement but it won't work!
alert(schedule.cb.length);
If I type...
Hi All,
I'm a bit confused about new OS's which run IIS7. I'm currently running Windows 2003 Server w/ IIS6. The version of 2003 is specifically the Web Edition. I want to build an IIS7 box but don't know if I need Vista or Longhorn and if there are specific web editions of each of those OS's...
The enclosure falls between the <ITEM> tags.. Would look like this:
<enclosure url="http://some_url/some_mp3.mp3" length="5752829" type="audio/mpeg" />
Hi,
Not sure anyone wants to take a crack at this but I'm sure it's fairly easiy if you understand parsing much better than I! I have the following script to parse XML (podast feeds). There is no facility to grab an enclosure url. I tried modifying the scritp to do so but can't get it to work...
The 10 was just to simplify things a bit.. It ends up being a dynamic variable. For some odd reason <=10 didn't work. When I changed it to !=10, it did... Not sure what's up with that but I suppose it serves the purpose.
A bit more... Whenever I use the FOR loop PHP barfs. I get this message:
extract() [function.extract]: First argument should be an array in 'path to file'...
Thanks for the input everyone! There's a bit more to the problem... The while loop contains a second loop.. I need the first one to stop based on a counter that's contained in the second loop. So I can't use "limit" in my query because I don't know the value of the limit until I get to the inner...
Hi all,
I'm running a while loop on a MySql query:
while ($row = mysql_fetch_assoc($rresult)){
extract($row);
}
Question: I want to run the while loop until a counter hits a specific number. Can this be done? I tried:
while ($counter<=10 && $row = mysql_fetch_assoc($rresult)){...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.