コード例 #1
0
ファイル: buscador.php プロジェクト: dareyesm/buscadorPHP
<?php

//llamamos la clase libros donde vamos a buscar...
require 'class/books.php';
$objBook = new Books();
$words = explode(' ', $_POST['word']);
$num = count($words);
$result = $objBook->buscar($_POST['word'], $num);
?>

<table border="1">
    <tr>
        <th>CODIGO</th>
        <th>TITULO</th>
        <th>AUTOR</th>
        <th>EDITORIAL</th>
        <th>DESCRIPCION</th>
    </tr><?php 
if ($result) {
    foreach ($result as $key => $value) {
        ?>
            <tr>
                <td><?php 
        echo $value['codeBo'];
        ?>
</td>
                <td><?php 
        echo $value['titleB'];
        ?>
</td>
                <td><?php