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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by OSR

  1. OSR

    get IP of user/browser?

    thank you Rocco is the BOY!! SHUT YOUR LIPS...
  2. OSR

    get IP of user/browser?

    How do I get the IP of the browser, i know about gethostbyaddr()... how can i get the IP of the browser/user visiting my site? Rocco is the BOY!! SHUT YOUR LIPS...
  3. OSR

    Ensure Data Written to HDD - option in W2K SERVER?

    I've found out that the way to do this is to actually create a 'mirrored drive' using the Computer Management Console however I'm still unable to do this as per the instructions given in the Windows Help... Look under Mirror in the help under windows. Anybody have any ideas on how to create...
  4. OSR

    Ensure Data Written to HDD - option in W2K SERVER?

    I found these keywords that should help -- 'ensuring data integrity' 'fault tolerant' Rocco is the BOY!! SHUT YOUR LIPS...
  5. OSR

    Setting up a VPN with Linksys Router

    is it a VPN linksys router or are you port forwarding to the W2K Server? Rocco is the BOY!! SHUT YOUR LIPS...
  6. OSR

    Ensure Data Written to HDD - option in W2K SERVER?

    I want to be able to ensure that data that is written to one of my harddrives from a network share is actually written. I've seen this option I think in Windows 2000 Professional to ensure data write for a logical drive... I've had enormous problems with this 80gig MAXTOR drive of actually...
  7. OSR

    Access Table Files via PHP

    <?php // get contents of a file into a string $filename = &quot;/usr/local/something.rec&quot;; $handle = fopen ($filename, &quot;r&quot;); $contents = fread ($handle, filesize ($filename)); fclose ($handle); ?> see if that works - if the files are not within the web or server root u may...
  8. OSR

    Create USERS and PASSWORDS in PHP

    I want to create users and passwords in my .htpsswd file and I know I have to use the console command-- example: htpasswd -c /usr/local/etc/httpd/users martin can PHP run UNIX commands, otherwise i will have to use PERL I know in the manual it says that if you put something in `backtick` marks...
  9. OSR

    How do I restrict my results to 10 a page?

    Querying the database is probably the best solution in SQL u can put the LIMIT SELECT * FROM `myTable` LIMIT 0,30 Rocco is the BOY!! SHUT YOUR LIPS...
  10. OSR

    mysql database webserver upload

    Use the Export option and choose SQL... This will generate sql files that contain all the values and tables in your db... Import them into the new host db - usually there is a seperate utility that the web host will provide through their control panel to upload/backup your site files including...
  11. OSR

    Window Close / focus question : newbie

    Try this, In your window.open() function u should name the popup your opening so u can refer to it window.open(&quot;popup.html&quot;,&quot;MyPopup&quot;,....) Now you can call it from the (list) page by putting an Onclick event in your links and setting the focus --...
  12. OSR

    one click two destinations

    You would use: // this is to open the popup window.open() //This is to set the main windows URL location.assign() or location.reload() Rocco is the BOY!! SHUT YOUR LIPS...
  13. OSR

    Matching

    explode() Rocco is the BOY!! SHUT YOUR LIPS...
  14. OSR

    Matching

    sorry I counldn't understand fully what you want... why can't u use SQL statements to do this?? What are you trying to do exactly - find the users whose countries equal each other or find users from both tables that have countries equal to a specific country? Your current SQL statement...
  15. OSR

    Need to convert Mysql to Excel?

    I echo that PHP may not be the most suitable solution here but it's capable of doing this... <?php // starting word $word = new COM(&quot;word.application&quot;) or die(&quot;Unable to instanciate Word&quot;); print &quot;Loaded Word, version {$word->Version}\n&quot;; //bring it to front...

Part and Inventory Search

Back
Top