See heres the solution
i am writing my code -- replace with ur variables
<form action=aa.php method=post>
<textarea name='somevar'></textarea>
<input type=submit value=Yes>
</form>
in aa.php
echo $somevar;
this will work.
The proble with ur code is that in textarea name=somevar you havent specified single or double quotes.
Do what ever value i enter seperated by space it takes only the part before space.
ex.
i enter -- mandarkelkar is my name
result should be -- mandarkelkar is my name
but in ur case it would be mandarkelkar
I know this will definately work for u....
cheers
Mandar kelkar