El hecho es que me guarda los valores pero no suma y coloca el total, que puedo hacer, aqui mando mi script
<?php
require_once("conexion.php");
require_once("fondo.html");?>
<html>
Orientación en el Tiempo:
<INPUT TYPE='text' name='orientacion_en_tiempo' size='1'>
Evocación:
<INPUT TYPE='text' name='evocacion' size='1'>
Lectura:
<INPUT TYPE='text' name='lectura' size='1'><br><br>
Orientación en el Espacio:
<INPUT TYPE='text' name='orientacion_en_espacio' size='1'>
Lenguaje:
<INPUT TYPE='text' name='lenguaje' size='1'>
Escritura:
<INPUT TYPE='text' name='escritura' size='1'><br><br>
Registro:
<INPUT TYPE='text' name='registro' size='1'>
Repetición:
<INPUT TYPE='text' name='repeticion' size='1'>
Copia:;
<INPUT TYPE='text' name='copia' size='1'><br><br>
Atención y Cálculo:
<INPUT TYPE='text' name='atencion_y_calculo' size='1'>
Orden de Tres Comandos:
<INPUT TYPE='text' name='orden_tres_comandos' size='1'><br><br>
<?php
$total = $orientacion_en_tiempo + $evocacion+ $lectura+ $orientacion_en_espacio+
$lenguaje + $escritura+ $registro + $repeticion+
$copia + $atencion_y_calculo+ $orden_tres_comandos;
?>
Total:
<INPUT TYPE='text' name='total'value="<?php echo $total?>" size='2'> <br><br>
<center><input type='submit' value='Guardar' name='Save'> </center>
</html>
![triste](http://static.forosdelweb.com/fdwtheme/images/smilies/frown.png)
De antemano gracias por la ayuda, soy novata.