Hello,
I am very new to PHP and I am trying to add 3 string variable together with a comma and space in between each one.
Here is my code but it only seems to hold the first variable and the comma space.
Any ideas ?
Thanks very much.
$prop_ref=$myrow["agent_ref"];
$prop_address=$myrow["address1"];
$prop_town=$myrow["town"];
$propdetails=$prop_ref.", ".$prop_address.", ".$prop_town ;