Im not sure if this is a lot to do with PHP but i have made a form and put a hidden field on it where the value is $question. However when the form is submitted and i ask it for $question on the next page it only displays one word of whatever question is. Does anyone know whats going wrong?
I suspect you need quotes around the hidden fields value:
<input type="hidden" name="question" value="<?php echo $question; ?>">
its still only showing one word.....
We're probably going to see your code, at least the section of the form page where the hidden field is created, and possibly the processing script that is outputting the value.
thanks a lot but its sorted....for some reason id written print instead of echo.