PHP Country Array

PHP Country Array

January 24th, 2010
This script includes an array of countries you can use in your PHP forms. I also included a select example that uses the same array to help speed up your development.
Read more on PHP Country Array »

Add Items Dynamically to .NET Arrays with C#

November 30th, 2008
If you are in a situation where you need to add an item to an array you will need to use one of the collection classes such as the Arraylist. New values cannot be added to an array that has set values. String Array Example string[] list = new string[] { "one", "two", "three" }; foreach (string item [...]
Read more on Add Items Dynamically to .NET Arrays with C# »

PHP implode() Function with C#

November 23rd, 2008
The following snippet will join values in an array with a specified separator. string[] items = new string[] { "one", "two", "three" }; string.Join(", ", items);
Read more on PHP implode() Function with C# »

Sponsors