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. sc7090

    GET and POST method problem, key array changes

    You are right! I thought that the key of an array was seen as a string or a value. But why do i need to do that? The answer is that i create a mySQL query where the <name> is what i look for and the value is what i set. the query looks like: UPDATE table SET val=<value> WHERE cod=<name> Well...
  2. sc7090

    GET and POST method problem, key array changes

    Hallo to everybody, my problem is very simple: if i write: <input name="F2070.1" type="hidden" value="12" /> <input name="name" type="hidden" value="F2070.1" /> the print_r result for $_GET and $_POST array is: Array ( [F2070_1] => 12 [name] => F2070.1 ) So, what happend to the key F2070.1...
  3. sc7090

    GET and POST method problem, key array changes

    Thanks Feherke, i wasn't sure it was a php issue. But now i'm curious: what's the alternative to my old times habit? I really appreaciate any suggestion that can help to improve my programming knowledge. I move this thread to php forum as you suggested. Thanks again, Claudio.
  4. sc7090

    GET and POST method problem, key array changes

    Hallo to everybody, my problem is very simple: if i write: <input name="F2070.1" type="hidden" value="12" /> <input name="name" type="hidden" value="F2070.1" /> the print_r result for $_GET and $_POST array is: Array ( [F2070_1] => 12 [name] => F2070.1 ) So, what happend to the key F2070.1...
  5. sc7090

    ntbackup and dir names

    Yeah, You did it! It works, but it's better to write: cmd = "cmd /c ntbackup backup ""D:\Program Files\dir1\dir2"" etc ..." Thanks.
  6. sc7090

    ntbackup and dir names

    i'm trying to backup file with this command: ntbackup backup D:\Program Files\dir1\dir2 etc... but it doesn't work. So i wrote: ntbackup backup D:\Progra~1\dir1\dir2 etc... it works, but if i call it from a VBScript it doesn't. Any idea? Thanks.
  7. sc7090

    Check if tape is inserted before running ntbackup

    The FileSystemObject.Drives Collection doesn't recognize the tape as a drive: it only finds floppy, hd drives and cd-rom. The tape is considered a special device (i think) because it cannot be red via normal programs (like file manager and so on).
  8. sc7090

    Check if tape is inserted before running ntbackup

    It's a simple batch program that uses net start, net stop, ntbackup and net send programs to backup files. I think that the main problem is to understand when there is a problem because ntbackup doesn't send error messages, it only waits for the tape etc... On any case, at a certain hour i start...
  9. sc7090

    Check if tape is inserted before running ntbackup

    Hallo to everybody: i would like to know if it's possible to check if tape is inserted before running ntbackup. I call ntbackup from a batch file with at command: i have to stop some services to backup files but, if i forget to insert the tape, ntbackup stops and wait for the tape. Services...
  10. sc7090

    querying database from web based form

    If you use GET method you have to look for the key=>val inside $_GET[] var. For example you wrote: <input type=&quot;text&quot; name=&quot;num&quot; /> you will have to look for $_GET['num'] If you use a POST method you will have to look for $_POST['num'] You choose to use GET or POST when...
  11. sc7090

    autocomplete drop down list

    Well, you are right. My idea was: you type one or more letters (like herman75 suggested) then push a submit button and make a search.
  12. sc7090

    autocomplete drop down list

    If you really have thousand of entries why don't you send a request to the server for any new typed letter: in this way you can send to the client pure HTML code and don't have the problem with downloading ActiveX controls or javascript activation and so on...and then you limit the quantity of...
  13. sc7090

    Auto disconnect internet connections

    I also had an e-Mail server and it worked properly like your (connect modem, collect/send mail, disconnect modem): the problem was due only to internet browsing. Try this: Dial-Up Networking-->More-->User Preferences-->Dialing-->Idle seconds before hanging up and Dial-Up...
  14. sc7090

    Log modem status

    Hallo to everybody. The question is simple: i would like to log the modem status, when it swithes on and when it switches off. In this way i would be able to check how many hours it works. Any suggestion is welcome. Thanks.
  15. sc7090

    Auto disconnect internet connections

    I had the same problem: it was due to free provider i was using (tiscalinet) to access the web. Free access providers like tiscali and wind continuosly send packets through the modem, setting to zero the counter for the auto disconnection. The provider told me that their service doesn't...
  16. sc7090

    Environment variables

    Hi to everybody. I would like to be able to create an environment variable that changes every day: in particular i would like to create a variable where to store the date of the day. I know how to use the comand set, but i need to use it, for example, with function date /t that returns me the...
  17. sc7090

    STOP screen

    If don't want to install a 2nd copy of windows NT and can handle the hardware of your system, take the hard-disk and load it onto another system running Windows NT or other OS that can access NTFS partitions. From there you can save all your files and try to overwrite the corrupted ones. You...
  18. sc7090

    Cannot drag and drop desktop icons

    For your problem try to see for the W32.Blaster.Virus. at http://securityresponse.symantec.com/avcenter/venc/data/w32.blaster.f.worm.html From here you can download a free tool that can help you if your sistem is infected by this virus. Concerning my problem i think it's a little bit different...
  19. sc7090

    Cannot drag and drop desktop icons

    I don't have this option on my Windows NT 4 Workstation...where did you find it? Thanks.
  20. sc7090

    Cannot drag and drop desktop icons

    Yes, i already tryed it. Nothing changed. When i click an icon on desktop i select it but i am not able to drag it: the auto arrange icons option is not selected. The same thing happens on explorer with files and dirs. To move a file i have to copy and paste it.

Part and Inventory Search

Back
Top