Let\'s say I have a string.
$string = red,green,blue,yellow,black;
Now I have a variable which is the position of the word I am searching f
http://codepad.org/LA35KzEZ
$a = explode( ',', $string ); echo $a[ $key ];