Código PHP:
<?php
$fecha=$_POST[dia]."-".$_POST[mes]."-".$_POST[year];
$carrera=$_POST[hipodromo]."".$_POST[num];
$result = mysql_query("INSERT carrera (Fecha ,Carrera,Distancia ,Serie , Tiempo , Participantes)
VALUES ('$fecha','$carrera','$_POST[distancia]','$_POST[serie]','$_POST[tiempo]')")
or die ("ERROR: No se pudo agregar la informacion");
?>
Desde ya gracias...