Foros del Web » Programando para Internet » PHP »

solucion para formulario?

Estas en el tema de solucion para formulario? en el foro de PHP en Foros del Web. hola que tal miren ando en busca de ayuda. lo que tengo es lo siguiente es un formulario para publicar anuncios pero no eh logrado ...
  #1 (permalink)  
Antiguo 12/10/2011, 13:27
 
Fecha de Ingreso: marzo-2011
Mensajes: 115
Antigüedad: 13 años, 1 mes
Puntos: 0
solucion para formulario?

hola que tal miren ando en busca de ayuda. lo que tengo es lo siguiente es un formulario para publicar anuncios pero no eh logrado que suban y se vea las fotos y que se puedan mostrar los videos en la web tampoco?


estos son los codigos

Código PHP:
<?php virtual('/Connections/anuncios.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function 
GetSQLValueString($theValue$theType$theDefinedValue ""$theNotDefinedValue ""
{
  if (
PHP_VERSION 6) {
    
$theValue get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  
$theValue function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch (
$theType) {
    case 
"text":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;    
    case 
"long":
    case 
"int":
      
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case 
"double":
      
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case 
"date":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;
    case 
"defined":
      
$theValue = ($theValue != "") ? $theDefinedValue $theNotDefinedValue;
      break;
  }
  return 
$theValue;
}
}

$editFormAction $_SERVER['PHP_SELF'];
if (isset(
$_SERVER['QUERY_STRING'])) {
  
$editFormAction .= "?" htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset(
$_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  
$insertSQL sprintf("INSERT INTO formulario (id_formulario, ciudad, categorias, titulo, descripcion, email, foto, video) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
                       
GetSQLValueString($_POST['id_formulario'], "int"),
                       
GetSQLValueString($_POST['ciudad'], "text"),
                       
GetSQLValueString($_POST['categorias'], "text"),
                       
GetSQLValueString($_POST['titulo'], "text"),
                       
GetSQLValueString($_POST['descripcion'], "text"),
                       
GetSQLValueString($_POST['email'], "text"),
                       
GetSQLValueString($_POST['foto'], "text"),
                       
GetSQLValueString($_POST['video'], "text"));

  
mysql_select_db($database_anuncios$anuncios);
  
$Result1 mysql_query($insertSQL$anuncios) or die(mysql_error());

  
$insertGoTo "/mis-anuncios.php";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$insertGoTo .= (strpos($insertGoTo'?')) ? "&" "?";
    
$insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  
header(sprintf("Location: %s"$insertGoTo));
}
?>
<!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>Documento sin t&iacute;tulo</title>
<style type="text/css">
#apDiv1 {
    position:absolute;
    left:192px;
    top:23px;
    width:471px;
    height:80px;
    z-index:1;
}
</style>
</head>

<body>
<div id="apDiv1">
  <form action="<?php echo $editFormAction?>" method="post" name="form1" id="form1">
    <table align="center">
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Ciudad:</td>
        <td><input type="text" name="ciudad" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Categorias:</td>
        <td><input type="text" name="categorias" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Titulo:</td>
        <td><input type="text" name="titulo" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Descripcion:</td>
        <td><input type="text" name="descripcion" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Email:</td>
        <td><input type="text" name="email" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Foto:</td>
        <td><input name="foto" type="file" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">Video:</td>
        <td><input type="text" name="video" value="" size="32" /></td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right">&nbsp;</td>
        <td><input type="submit" value="Insertar registro" /></td>
      </tr>
    </table>
    <input type="hidden" name="id_formulario" value="" />
    <input type="hidden" name="MM_insert" value="form1" />
  </form>
  <p>&nbsp;</p>
</div>
</body>
</html>
y la base de datos
Código MySQL:
Ver original
  1. id_formulario   int(11)     No               
  2. ciudad  varchar(100)    No               
  3. categorias  varchar(100)    No               
  4. titulo  varchar(100)    No               
  5. descripcion     varchar(255)    No               
  6. email   varchar(100)    No               
  7. foto    varchar(100)    No               
  8. video   varchar(100)    No

si alguien me puede ayudar por favor
gracias

Etiquetas: formulario
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 03:27.