sanjdhiman
Programmer
Hi there i have a small problem
I have the following for loop
for ($d=0; $d<count($propertyresults); $d++)
{
echo $propertyresults[$d];
}
This works fine
What i need it to do is to go into a variable like $mailcontent but with other things as well for example
$mailcontent = "Customer Name" . $First . " " . $Last ."\n".
"Properties found:" . "\n".
<<then all the results from the for loop above dumped here>>
"\n";
Does anyone know how to best tackle this situation??
Thanks in advance
Sanj
Sorry going brain dead
I have the following for loop
for ($d=0; $d<count($propertyresults); $d++)
{
echo $propertyresults[$d];
}
This works fine
What i need it to do is to go into a variable like $mailcontent but with other things as well for example
$mailcontent = "Customer Name" . $First . " " . $Last ."\n".
"Properties found:" . "\n".
<<then all the results from the for loop above dumped here>>
"\n";
Does anyone know how to best tackle this situation??
Thanks in advance
Sanj
Sorry going brain dead