Código PHP:
// Convertir 1° letra a mayuscula
function convertir (n, n1) {
if (n.length==0 || n.substr(n.length-1,1)==' ') {
n1.value = n+te.toUpperCase();
alert(n1+'Cambiado')
return false;
}else{
return true;
}
}
Código PHP:
onsubmit="if (valida_texto(this.txt_nombre.value,'Referencia')==false || valida_numerico(this.txt_nombre.value,'Referencia')==false || valida_texto(this.txt_descripcion.value,'Descripcion')==false || convertir(this.txt_descripcion.value,'Descripcion')==false ) {return false}"