Hi, thanks for the reply
I have this value in createvalues.php
$final_total = sprintf("%.02f", $final_total + $total_price);
IN showvalues.php i have three statements that I want to use
this in the sql statement
'$POST[order_email]', '$POST[final_total]', '$_POST[shipping_total]',
and these to display the total
$_item_total = '$var';
this is the form statement
$form.= "Your total purchase: <input type=\"int\" name=\'item_total\' ";
$form.= "size=\"10\" value=\"$_final_total\"><br>";