|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-26 15:47 UTC] derick@php.net
[2001-05-26 17:12 UTC] feo84 at web dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 02:00:01 2025 UTC |
I try to pass a username and a password to the program msntauth (user authentication for the Squid proxy server) using the following construction: $ok = `echo $id '$passwort' | /usr/sbin/msntauth`; The variable $ok seems to contain the string "OK", but when I try to test it in an if-query, the result is false: if ($ok == "OK") { ... }