I'd use samba on the linux box to enable Windows file sharing, then just mount the exported share on your Windows machine and use regular filesystem commands.
If you're running on a *nix box, I'd recommend using the command line "host" function. For instance, the command "host -t ns domain.name" returns the names of that domain's name servers. If it...
One alternative to using SSL is to encrypt the password with javascript and send the encrypted hash. For instance, a set of JS functions to convert a string to its MD5 hash is at...
If you're looking for a real-time alternative, you might see whether or not you can make an ODBC connection to the POS system. If so, you can use PHP's ODBC functions to access the POS system over...
If you really can't refresh the whole page, you could use frames to place the table in its own frame that refreshes once per minute while the other frames remain static.
It's more reliable, and usually simpler, to treat $_POST as an associative array where $_POST["fieldname"]=fieldvalue. That way you never have to think about the order in which the items were...
If you're ultimately going to download the contents to Excel, I strongly suggest you look at Excel's native time formats which, like Unix, represent time as a number, then use functions to format the...
If you have a recent version of PHP (4.3.0 or later), use file_get_contents() as documented here:
http://us2.php.net/manual/en/function.file-get-contents.php
Perhaps your version of Windows doesn't have an entry to resolve "localhost" to 127.0.0.1 in its "hosts" file. What happens if you point your browser at http://127.0.0.1? Or...
The $_ENV variables are telling you about the server's environment. My understanding of the question is that Extreme wants to know what the OS version is of the client web browser. For that you...