Category Archives: php

PHP: Hypertext Preprocessor (a recursive acronym, originally personal home page) is a general-purpose scripting language that was originally designed for web development to produce dynamic web pages. For this purpose, PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document. As a general-purpose programming language, PHP code is processed by an interpreter application in command-line mode performing desired operating system operations and producing program output on its standard output channel. It may also function as a graphical application. PHP is available as a processor for most modern web servers and as a standalone interpreter on most operating systems and computing platforms.

Create a delimited list of SortedList Keys in C#

I love C#, but miss the simplicity of PHP sometimes.  Specifically when dealing with collections.  Recently I ran into a situation where PHP’s implode would have been perfect, but I wasn’t able to find any quick and easy built in … Continue reading

Posted in .net, C#, php | Tagged , , , , | 4 Comments

PHP state picker options list maker

Here’s a static function I use in some of my PHP projects when I need to create a united states state picker.  It makes it really convenient to have an empty <select> in my form that wraps a $statelist variable … Continue reading

Posted in php | Tagged , , , , , | Leave a comment