Actualizo el escrip esta listo pero me da el siguiente error:
Código PHP:
Ver original<?php
header('content-type: text/html; charset=utf-8'); // Si entramos es que todo se ha realizado correctamente
include("config/config.php");
$title=$_POST['title'];
$website=$_POST['wscb'];
$fecsea1=$_POST['fecsea1'];
$fecsea2=$_POST['fecsea2'];
//busqueda por website-> luego titulo-> luego fecha:
$result1 = mysql_query("SELECT * FROM art WHERE website LIKE '$website' AND title MATCH(title) AGAINST ('$title') AND DATE_FORMAT(create_date_art) BETWEEN '$fecsea1' AND '$fecsea2' ORDER BY art_pk DESC", $link); ?>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="70">ID</td>
<td width="400">Title</td>
<td width="200">Web Site</td>
<td width="150">Fecha Creacion</td>
<td width="100">Update Link</td>
</tr>
<?php
//deberia ir un ciclo while dentro de php
$id = $printer['art_pk'];
$fecha = $printer['create_date_art'];
$nombre = $printer['title'];
$web = $printer['website'];
?>
<tr>
<td><?php echo " $id "; ?></td>
<td><?php echo " $nombre"; ?></td>
<td><?php echo " $web "; ?></td>
<td><?php echo " $fecha "; ?></td>
<td> <a href="index4.php">Link</a></td>
</tr>
<?php
}
//ak terminaria el ciclo While.
?>
</table>
<?php
?>
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\liste.php on line 24
alguien puede ayudarme?
..