Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dle46163
  • Order by date
  1. dle46163

    Epoch time compare

    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...
  2. dle46163

    Epoch time compare

    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...
  3. dle46163

    Checking for existance of an image

    Very nice, thank you!
  4. dle46163

    Checking for existance of an image

    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...
  5. dle46163

    SAXException w/ IE in kiosk mode

    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...
  6. dle46163

    Strpos

    Thanks jpadie, works like a charm! -dle
  7. dle46163

    Strpos

    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...
  8. dle46163

    Variable problem

    Perfect, thank you!!
  9. dle46163

    Variable problem

    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...
  10. dle46163

    Which OS for IIS7?

    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...
  11. dle46163

    Parsing XML - Grab enclosures

    Disregard... I found a much better open source solution which includes everything!
  12. dle46163

    Parsing XML - Grab enclosures

    The enclosure falls between the <ITEM> tags.. Would look like this: <enclosure url="http://some_url/some_mp3.mp3" length="5752829" type="audio/mpeg" />
  13. dle46163

    Parsing XML - Grab enclosures

    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...
  14. dle46163

    WHILE loop

    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.
  15. dle46163

    WHILE loop

    GOT IT! Just had to change syntax a bit.. Here's what worked: while($counter!=10 && $row = mysql_fetch_assoc($rresult))
  16. dle46163

    WHILE loop

    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'...
  17. dle46163

    WHILE loop

    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...
  18. dle46163

    WHILE loop

    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)){...
  19. dle46163

    Large file download in 5.2.3?

    The new install is on the same server... I finally gave up and went back to 5.0.4.
  20. dle46163

    Large file download in 5.2.3?

    Due to some specific settings,I used the original php.ini for the second install.. Might this be causing a problem? Meantime, I'll try readfile....

Part and Inventory Search

Back
Top