Re: [PHP] table border colors in html/xml

2003-02-23 Thread Mark Virtue
"Sunfire" <[EMAIL PROTECTED]> wrote > sorry.. does anybody know of any mailing list i can join for that then? alt.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MS SQL Server problem

2003-02-23 Thread Mark Virtue
This code works perfectly and returns all the data that I expect: mssql_pconnect($hostname, $username, $password) or die("blah blah"); mssql_select_db($dbName) or die("blah blah"); $result = mssql_query("select MyFieldName from MyTable"); But if I change the last line to this: $result = mssql_q

Re: [PHP] Is mail() broken in 4.3.0 when it comes to BCC?

2003-02-10 Thread Mark Virtue
a8c0@fleo">news:008101c2d108$f75ff600$0100a8c0@fleo... > Try this: > > mail("[EMAIL PROTECTED]", "My Subject", "Line 1\nLine 2", "From: [EMAIL PROTECTED]\nBCC: > [EMAIL PROTECTED]"); > > > > - Original Message - >

[PHP] Is mail() broken in 4.3.0 when it comes to BCC?

2003-02-10 Thread Mark Virtue
This line works as expected: mail("[EMAIL PROTECTED]", "My Subject", "Line 1\nLine 2", "From: [EMAIL PROTECTED]"); whereas if I change it to this: mail("[EMAIL PROTECTED]", "My Subject", "Line 1\nLine 2", "Bcc: [EMAIL PROTECTED]"); the mail never gets sent! I'm running 4.3.0 on Windows XP. An

[PHP] Unsetting PHP_AUTH_USER

2002-05-07 Thread Mark Virtue
I'm having a devil of a time trying to "unset" the built-in global $PHP_AUTH_USER. My aim is to have a "logout" button. Obviously the first thing to try is unset($PHP_AUTH_USER). No good - when I refresh the page it's back. Then I tried unset($_SERVER['PHP_AUTH_USER']) - same deal. I also t