There is a bit of code that i wish to modify and im sure its [B]simple[/B
bassically it is the email to merchant setting and two number are recieved from the contact us page, and i want them to appear next to each other in the email at the moment they appear
Outter Diameter: 5
*point*:34
Height: 6
*point*:28
for example what i want to happen is
Outter Diameter: 5.34
Height: 6.28
any help please
$sTextMailBody .= "Telephone: " . $::g_InputHash{'Telephone'} . "\r\n";
$sTextMailBody .= "Outter Diameter: " . $::g_InputHash{'OD1'} . "\r\n";
$sTextMailBody .= "*point*: " . $::g_InputHash{'OD2'} . "\r\n";
$sTextMailBody .= "Height: " . $::g_InputHash{'H1'} . "\r\n";
$sTextMailBody .= "*point*: " . $::g_InputHash{'H2'} . "\r\n";
$sTextMailBody .= "Outter Diameter: " . $::g_InputHash{'OD1'} . "\r\n";
$sTextMailBody .= "*point*: " . $::g_InputHash{'OD2'} . "\r\n";
$sTextMailBody .= "Height: " . $::g_InputHash{'H1'} . "\r\n";
$sTextMailBody .= "*point*: " . $::g_InputHash{'H2'} . "\r\n";
Outter Diameter: 5
*point*:34
Height: 6
*point*:28
for example what i want to happen is
Outter Diameter: 5.34
Height: 6.28
any help please
Comment