Hi, i was wondering if theres any way to echo an array into a textarea so that it can be edited and then saved, i know how it can be saved only cant work out how to get it into the textarea in the first place. This is the current array:
$fileTypes = array('jpg', 'gif', 'png');
If i just use echo $fileTypes; then it will just display "Array" in the textarea, how can i overcome this problem.
Thanks.