我目前正在为我的公司开发一个搜索引擎。它使用 AJAX 和 PHP,搜索引擎已经完成,但现在我面临另一个问题。
有没有办法只发布被打勾的文章的价格?这是到目前为止的代码:
<thead>
<th class="col1">Codigo</th>
<th class="col2">Código Catálogo</th>
<th class="col3">Descripción</th>
<th class="col4">Precio </th>
<th class="col5">Carrito</th>
<th class="col6">Cantidad</th>
</thead>
<td><?php echo $row['codigo']; ?></td>
<td><?php echo $row['codigo_cat']; ?></td>
<td><?php echo $row['descripcion']; ?></td>
<td><?php echo $row['precio']; ?></td>
<td><form action="cart.php" method="post"><input type='checkbox' name='buy[]' value='1' /></td>
<td><input type="number" id="num"/><input type="submit" value="Calc"/> </form></td>