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: y2k1981
  • Order by date
  1. y2k1981

    multi-dimensional array not working

    I didn't need to have it put into a PHP array, just a JS array by echo-ing out the output in the appropriate place between the script tags. but thanks for your method, its good to know
  2. y2k1981

    multi-dimensional array not working

    I'm such a fool ... I don't know why I didn't think of this sooner: $get_users = mysql_query("SELECT * FROM users"); $i=0; while($users = mysql_fetch_array($get_users)) { echo "myArray[".$i."][".$users['userName']."]"; $i++; } Thanks again for all your help
  3. y2k1981

    multi-dimensional array not working

    yes, I want to echo it out into a javascript array
  4. y2k1981

    multi-dimensional array not working

    I know that you have to run the query in order to get any results, that's not the problem. I understand what you're saying about mysql_fetch_array(). that makes sense. So, what I really need to know now is how do I use while($users = mysql_fetch_array($get_users)) and also have a for loop...
  5. y2k1981

    multi-dimensional array not working

    I'm using PHP to pull some data my sql like so: $get_users = ("SELECT * FROM employees"); while($users = mysql_fetch_array($get_users)) { echo $users['usernmae']; --- OR --- echo $users[0] } I have two questions, firstly, shouldn't the following work: $get_users = mysql_query("SELECT * FROM...
  6. y2k1981

    2003 server cannot map dirve or RDC to it ??

    forgot to mention, the fact that you can't RDP to it either probably means there's some ports being blocked somewhere. I think the port for TS is 3389, try telnetting to that also.
  7. y2k1981

    2003 server cannot map dirve or RDC to it ??

    so you can ping this server but you can't connect via UNC. Try telnetting to port 139 - go to command prompt (at a client PC, not server) and type telnet 169.254.0.1 139 (replacing 169.254.0.1 with your servers IP address). It should connect, you won't really see anything but it will say...
  8. y2k1981

    2003 server cannot map dirve or RDC to it ??

    Or alternatively go to a command prompt and type: \\myserver on it's own. This should bring up any visible shares as well as the printers folders. If this comes up, you have permissions of some kind to the server. Otherwise you should be prompted for a username and password
  9. y2k1981

    accessing policies via UNC

    sorry about the funny subject. What I want to know is, when I access policies (mainly to run logon script) via: \\mydomain.biz\sysvol\mydomain.biz what server does it look on? We have four servers at our sites and numerous other servers at remote offices. I presumed it would use the same...
  10. y2k1981

    body mouseout is called for each element

    Thanks Billy Ray. So is there any way around this at all? Basically all I want to do is detect when the mouse is no longer within the body of the document. But I don't want to go adding code to every element in the document unless absolutely necessary
  11. y2k1981

    body mouseout is called for each element

    I want to detect when the mouse laves the main window of the doucmnet, ie goes up to the toolbar, or down to the status bar etc. I've added an onmouseout to the body tag, but it's begin called each time I mouse over an element in the document, eg a div or a table. I haven't tried it with...
  12. y2k1981

    detecting mouseup ouside window

    is it possible to detect a mouseup outside of the body, ie when the user brings the mouse up towards the toolbar? I'm creating a movable div and have tried several different options but none provide exactly what I need. I've tired event.clientX < 0 and I've tired adding an onmouseout to the...
  13. y2k1981

    Dargging a div containing an IFRAME

    Cheers, thanks for that. I'll have a look. Just to let you know that I did try making the IFRAME invisilbe while it was being dragged and it worked. anyway, I'm off to read that article now, thanks again
  14. y2k1981

    Dargging a div containing an IFRAME

    yea, i see your point but I still think there has to be a better way. I've seen this done before. I think you're right also, the browser can't move the IFRAME as quick as the cursor, that's where the problem lies. In the examples I've seen, the mouse still does move faster than the IFRAME...
  15. y2k1981

    enter key not working in netscape6

    Add this to your body tag: onKeyDown = alert(event.keyCode) and then open the page in NN and press enter. See what keycode is returns, is it 13? I'd test but I don't have NN.
  16. y2k1981

    Dargging a div containing an IFRAME

    Please, can anybody help me out here at all??? I've been searching the net but not really found anything that can help me
  17. y2k1981

    Dargging a div containing an IFRAME

    No, afraid not. if I hid the IFRAME, the user wouldn't see where the bottom of it was being placed. Besides, it wouldn't look very trendy would it !?!? Surely there's a way around this? Perhaps it's got to do the times I'm calling the functions. Maybe I shouldn't call them with onMouseMove?
  18. y2k1981

    Dargging a div containing an IFRAME

    I've been able to create a basic DIV which I can drag around the page. The code might not be the best, but it works so I'm happy enough for now ... well it almost works !! It works fine if the DIV contains an image, text etc. The problem arises when I put an IFRAME in there. As soon as the...
  19. y2k1981

    hunting to incorrect DN

    that's part of what I don't understand. I presume I have to telnet into the PBX to do this? But how do I go about doing that? As I said, the console PC is an ordinary NT workstation PC with an ordinary GUI app installed.
  20. y2k1981

    hunting to incorrect DN

    Thanks for the replies, but as I said I'm pretty new to this stuff so you'll have to help me out a bit. We've got an NT workstation consoled into the PBX. It's got meridian administration application which has a GUI. We make all the changes through the GUI. when you say phnechic am I ambe...

Part and Inventory Search

Back
Top