como estan?
les cuento, hice un formulario en javascript y php, esta todo terminado pero tengo un poblema con el campo obligatorio que no funciona...
aqui le paso el codigo:
<?php
session_start();
include_once("../includes/procs.php");
include_once('../includes/tiemposession.php');
include_once('../includes/conexiones.php');
include_once("../includes/clases.php");
//************************************************** **************************************************
if (!es_usuario_habilitado($_SESSION['idusuario'])) {exit;}
//************************************************** **************************************************
conectarse();
$idusuario=limpia($_SESSION['idusuario']);
$saldo=saldo($idusuario);
$empresa=$_SESSION['empresa'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php echo $empresa." - Inscripcion al concurso";?></title>
<link href="stylo0.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="calendar.css">
<script language="JavaScript" src="calendar_eu.js"></script>
<style type="text/css">
.Estilo2 {font-size: 24px}
</style>
</head>
<body>
<?php
include("cabecera.php");
include("barrausuario.php");
?>
<table width="799" height="76" border="0" align="center" class="pagina" >
<tr>
<td width="793" height="48" align="center" valign="top" class="tdcentro">
<div class="barras1">
Inscripcion al concurso anual del mejor sitio web
</div>
<p> </p>
<table width="674" border="1">
<tr>
<td height="172"><div align="center">
<form action="envia_form_php.php" method="post">
Usuario:*
<input type="text" name="usuario" size="16" />
<br />
Sitio web participante:*
<input type="text" name="sitio" size="16" />
<br />
¿Tenes los derechos de la obra registrados?:*
<input type="text" name="derechosregistrados" size="16" />
<br />
Categoria del sitio:*
<input type="text" name="categoriaweb" size="16" />
<br />
Breve comentario:*
<textarea name="comentario" cols="32" rows="6"></textarea>
<br />
<input name="submit" type="submit" value="Enviar" />
</form>
<script type="text/javascript"> function checar()
{
with (document.form['form'])
{
if(usuario.value=="")
echo "Error, verifique";
{
{
with (document.form['form'])
{
if(sitio.value=="")
echo "Error, verifique";
{
{
with (document.form['form'])
{
if(derechosregistrados.value=="")
echo "Error, verifique";
{
{
with (document.form['form'])
{
if(categoriaweb.value=="")
echo "Error, verifique";
{
{
with (document.form['form'])
{
if(comentario.value=="")
echo "Error, verifique";
{
}</script>
<?
if ($_POST["nombre"]!=""){
//Estoy recibieno el formulario, compongo el cuerpo
$cuerpo = "Formulario enviado\n";
$cuerpo .= "Usuario: " . $HTTP_POST_VARS["usuario"] . "\n";
$cuerpo .= "Sitio web participante: " . $HTTP_POST_VARS["sitio"] . "\n";
$cuerpo .= "¿Tenes los derechos de la obra registrados?: " . $HTTP_POST_VARS["derechosregistrados"] . "\n";
$cuerpo .= "Categoria del sitio: " . $HTTP_POST_VARS["categoriaweb"] . "\n";
$cuerpo .= "Breve comentario: " . $HTTP_POST_VARS["comentario"] . "\n";
//mando el correo...
mail("[email protected]","Formulario recibido",$cuerpo);
}
?>
</div></td>
</tr>
</table>
<p> </p>
<tr align="center" valign="middle">
<th width="793" height="20" align="center" valign="middle" scope="row">
<?php
//include("barravacia.php");
include("pie.php");
?>
</td>
</tr>
</table>
</body>
</html>
Gracias a todos.