Marek Kilimajer wrote:

Jay Blanchard wrote:

[snip]
....snobs jump in....
[/snip]

What is funny about that is that it is those snobs who folks ask their
questions to. It is those snobs who solve problems for others. It is
those snobs who have learned and experienced so that others may benefit.


Hi, while we are at it, is it possible to fix your mail client to include References or In-Reply-To header? Broken threading is more annoying to me that (top|bottom)-posting. ;)

Along the same topic, does anyone know what magic header tells Mozilla mail to add the Newsgroup: header? I've been trying to figure this out for some time now.


On some mailing lists, it shows up on (seemingly) random emails.

Free Tip :

Want to avoid "array index undefined" Notices? Verify your indexes before you use the array in a statement. My favorite method is :

$var = isset($foo['index']) ? $foo['index'] : NULL;

Practical example :

$username = isset($_POST['username']) ? $_POST['username'] : NULL;

Other ways to do the same :

  if(isset($_POST['username'])) {
     $username = $_POST['username'];
  } else { $username = NULL; }

--
Burhan Khalid
phplist[at]meidomus[dot]com
http://www.meidomus.com
-----------------------
"Documentation is like sex: when it is good,
 it is very, very good; and when it is bad,
 it is better than nothing."

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to