I found the problem. Because the text string is in a textbox, I didn't want the user to be able to delete/modify the text, as I it were contained within a table data cell for example. So I had disabled='true' within the texarea tag. When I did a print_r on $_POST, the text array was not in it and therefore not defined. So I got rid of the disabled='true', now $_POST does contain the text array, but the user can now modify/delete the text, which I don't want. Is there a way of getting $_POST to recognise the text, but without the user having access to delete/modify the text?