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: *

  1. Kharas

    PHP's version of JavaScript's SetTimeOut

    You see, the whole purpose of the clock is to give the 'users' of the website an idea of when a certain event is taking place. They already know the exact time, it is just a fresh reminder. I'd rather have an hour-wise accurate clock using php date() than have second-wise accurate clock, yet...
  2. Kharas

    PHP's version of JavaScript's SetTimeOut

    I only showed parts of the code so I wouldn't flood the thread so fast. The reason I'm using PHP's date, regarldess of the delay, which in THIS particular case does not represent any loss, or problem, or flaw, is because many many users do not have their computer clock's properly set. Which...
  3. Kharas

    PHP's version of JavaScript's SetTimeOut

    Greetings: I am building an advanced countdown timer and am currently stuck in the following bit: Basically what it 'did' in javascript was to get now's date with date(); every second with the use of the SetTimeOut function. However, for reliability, I was forced to adjust the timer to the...
  4. Kharas

    Adding TimeZone to JS Countdown Timer

    Here's a further explanation of what I said above: The code, taking the conditionals aside, basically uses date() to establish the date to which the countdown will tick to while also checking the user's local time so that a difference between the THEN and the NOW may be obtained, and thus the...
  5. Kharas

    Adding TimeZone to JS Countdown Timer

    Greetings, I have the following code: <SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript"> <!-- //start // NOTE: the month entered must be one less than current month. ie; 0=January, 11=December // NOTE: the hour is in 24 hour format. 0=12am, 15=3pm etc // example: dateFuture = new...
  6. Kharas

    get values from database

    My mistake, wrong thread. How can I delete these two?
  7. Kharas

    get values from database

    It is better, and certainly more useful, if you place all of your CSS code (what you have in your header) into a CSS page and then reference it like this: <html <head> <title>Your Website Title</title> <link href="name_of_your_css_file_or_page.css" rel="stylesheet" type="text/css" /> </head>...
  8. Kharas

    Loop Display

    What I gather from the buy.com page is a list of categories with dynamic subcategories. If for now, all you want to do is copy what buy.com has, I'd suggest starting by the simplification of your SQL tables, whose structure should look like this: Table_Name Id Merchant Category Sub_Category...
  9. Kharas

    MSN Behaviour through webcode

    In my code (an aspx page) I do my own authenticaton. So I sign in with code. When I want to add any contact to my list I have to go through the usual 2 pop-ups (confirmations) which I just click next on before having the contact finally added. I'd like to find a way to overcome these two steps...
  10. Kharas

    MSN Behaviour through webcode

    In my code (an aspx page) I do my own authenticaton. So I sign in with code. When I want to add any contact to my list I have to go through the usual 2 pop-ups (confirmations) which I just click next on before having the contact finally added. I'd like to find a way to overcome these two steps...
  11. Kharas

    JavaScript code to send a message to X msn user

    I've been looking desperately all over the web and this is the only relevant info I found: http://p199.ezboard.com/fcustomsignaturesfrm29.showMessage?topicID=19.topic Where you are suggested to use an applet and then a simple a href: <OBJECT...
  12. Kharas

    JavaScript code to send a message to X msn user

    I think developing applications with the SDK kit is a bit too extreme for this singular case. I don't forsee any 'improvements' for the website regarding this particular area. The automatic contact addition will be the only tool with a relation to msn, if we can even call it a 'tool'. Thanks...
  13. Kharas

    JavaScript code to send a message to X msn user

    I am making a contact list for one of the websites I'm working on and given most of the users rely on a combination of AIM and MSN, I've run into this particular problem. There is a javascript code which allows you to make a link that when clicked, (and if you have AIM open at the time) loads...
  14. Kharas

    How to dynamically call for vars??

    Thanks again. Wow, I didn't know you could do that. I really like the simplistic approach. Help is much appreciated.
  15. Kharas

    How to dynamically call for vars??

    Oh, I'm sorry, I was slow to pick this up. Dynamically loading the query values $row_query['field'] works, but what about... $var_1 And making that dynamically become $var_1, $var_2, etc.?? I haven't quite figured how to have the code 'reinterpretate' it as a var after the dynamic number has...
  16. Kharas

    How to dynamically call for vars??

    Thanks, Sleidia's solution worked just fine. I feel dumb but I swear I had tried to insert a var within the [] and it hadn't worked then. I guess I must of made a mistake =/ Whatever the case, your help is greatly appreciated.
  17. Kharas

    How to dynamically call for vars??

    Greetings I've run across a particular predicament: I am building a website for some pc gaming team and while doing a sub section of the MATCHES area, problems arose. If each team has 4 players, and the match ends when either side runs out players by playing best out of one, you can have...
  18. Kharas

    Conditioning the generation of an html table

    The thing is, I got: <table width="400" border="1" cellspacing="0" cellpadding="0"> And an inside do while loop in the second row of such table. How do you get the double quotes to not interfere with eachother?
  19. Kharas

    Conditioning the generation of an html table

    Which of the two 'do while' loops are you talking about?
  20. Kharas

    Conditioning the generation of an html table

    Thanks to helpful people in this forum that is ;) Case closed.

Part and Inventory Search

Back
Top