hi,
I'm trying to POST some variables to worldpay to initiate a payment.
My variables seem to post ok, except for the address.
Worldpay asks that address lines are terminated by the ascii newline character 

The first line of the address appears in the worldpay page when I POST using this...
$submitstring = "name=".$_GET['name']."&............... more variables here........."&";
$address_submit = htmlentities($_GET['address1'])."
".htmlentities($_GET['address2'])."
".htmlentities($_GET['town']);
$submitstring .= $address_submit;
$url = "https://select.worldpay.com/wcc/purchase?";
header('Location:'.$url.$submitstring);
but subsequent lines don't.
I've tried encoding the 
 using escape characters %26%2310; (%26==&, %23==#) but this doesn't seem to make any difference.
Can anyone see where I'm going wrong.
Many thanks for any help.
norpel