Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/01/2009, 11:15
calebgarcia
 
Fecha de Ingreso: enero-2009
Mensajes: 13
Antigüedad: 15 años, 10 meses
Puntos: 0
Exclamación ayuda de nuevo problemas con un sistemita de libros

que tal amigos gracias por la contestacion del error que tenia al consultar mi base de datos pero ahora tengo el problema que mis sentecias de if no se si noentras o, por que no me regresan los valores de mi bd yaimprimi en pantall linea por linea.
me imagino que algo sencillo que se m esta pansando por ahi por favor la ultima ayuda please..

codigo.........................

<?php

$conexion = mysql_connect("localhost","****** ","****");
mysql_select_db("xalaporg_canacoxa",$conexion);

$sSQL="Select Area From contenido Order By Area";
$result=mysql_query($sSQL);


?>

<?php while ($row=mysql_fetch_array($result)){?>
<option value="<?php echo $row["Area"];?>"><?php echo $row["Area"];?>
</option>
<?php } ?>


---------------------------------------------------------------




<?php
$var1=$_POST["textobusqueda"];
$Area=$_POST["Area"];
$radio= $_POST["tipo"];
$resp=$_POST["respuesta"];

$conexion = mysql_connect("localhost","xalaporg","@YfN5rk=8f4" );
mysql_select_db("xalaporg_canacoxa",$conexion);



if ($radio == "AUTOR" AND $resp=="SI")
$result= mysql_db_query ("contenido","select Area,Clave,Autor ,Titulo,LugardeEdicion ,Editorial ,AñodeEdicion,NumerodePaginas,Contenido,Edicion from Contenido where AUTOR='$radio' AND Area='$Area'");



if ($radio == "AUTOR" AND $resp=="NO")
$result=mysql_db_query("contenido","select Area,Clave,Autor ,Titulo,LugardeEdicion ,Editorial ,AñodeEdicion,NumerodePaginas,Contenido,Edicion from Contenido where AUTOR='$radio' AND Area='$var1'");



if ($radio == "TITULO" AND $resp=="SI")
$result=mysql_db_query("contenido","select Area,Clave,Autor ,Titulo,LugardeEdicion ,Editorial ,AñodeEdicion,NumerodePaginas,Contenido,Edicion from Contenido where TITULO='$radio' AND Area='$Area'");

if ($radio == "TITULO" AND $resp=="NO")
$result=mysql_db_query("contenido","select Area,Clave,Autor ,Titulo,LugardeEdicion ,Editorial ,AñodeEdicion,NumerodePaginas,Contenido,Edicion from Contenido where TITULO='$radio' AND Area='$Var1'");

if ($radio == "CLAVE" AND $resp=="SI")
$result=mysql_db_query("contenido","select Area,Clave,Autor ,Titulo,LugardeEdicion ,Editorial ,AñodeEdicion,NumerodePaginas,Contenido,Edicion from Contenido where CLAVE='$radio' AND Area='$Area'");

if ($radio == "CLAVE" AND $resp=="NO")
$result=mysql_db_query("contenido","select Area,Clave,Autor ,Titulo,LugardeEdicion ,Editorial ,AñodeEdicion,NumerodePaginas,Contenido,Edicion from Contenido where CLAVE='$radio' AND Area='$Var1'");


?>



-------------------------------------------------------------------



<td height="99"><span class="Estilo11"><FONT COLOR=BLUE><?PHP echo $row["Clave"]; ?> </td>
<td><span class="Estilo11"><FONT COLOR=BLUE> <?PHP echo $row["Autor"]; ?> </td>
<td><span class="Estilo11"><FONT COLOR=BLUE> <?PHP echo $row["Titulo"]; ?></td>
<td><span class="Estilo11"><FONT COLOR=BLUE> <?PHP echo $row["LugardeEdicion"]; ?></td>
<td><span class="Estilo11"><FONT COLOR=BLUE> <?PHP echo $row["Editorial"]; ?></td>
<td><span class="Estilo11"><FONT COLOR=BLUE><?PHP echo $row["AñodeEdicion"]; ?></td>
<td colspan="3"><span class="Estilo11"><FONT COLOR=BLUE> <?PHP echo $row["NumerodePaginas"]; ?></td>
<td width="84"><span class="Estilo11"><FONT COLOR=BLUE><?PHP echo $row["contenido"]; ?></td>
<td width="60"><span class="Estilo11"><FONT COLOR=BLUE> <?PHP echo $row["Edicion"]; ?></td>




ayudaaaaaaaaaaaa