[PHP] Somewhat-OT: Notation style

2003-11-12 Thread Chris Boget
What is the name of the notation that has variable names prefixed with the first letter of the type of the variable? eg. int iVar; float fVar; string sVar; thnx, Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Somewhat-OT: Notation style

2003-11-12 Thread Jay Blanchard
[snip] What is the name of the notation that has variable names prefixed with the first letter of the type of the variable? eg. [/snip] Hungarian notation -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Somewhat-OT: Notation style

2003-11-12 Thread Chris Shiflett
--- Chris Boget [EMAIL PROTECTED] wrote: What is the name of the notation that has variable names prefixed with the first letter of the type of the variable? eg. int iVar; float fVar; string sVar; I believe that's called Hungarian notation. I might be wrong, though. Chris = My Blog

Re: [PHP] Somewhat-OT: Notation style

2003-11-12 Thread Burhan Khalid
Chris Boget wrote: What is the name of the notation that has variable names prefixed with the first letter of the type of the variable? eg. int iVar; float fVar; string sVar; That's Hungarian notation (named after a guy that worked at MS that came up with it, iirc). The $VarNameLikeThis is