gpt4 book ai didi

php - 如何过滤属于特定类别的帖子 [产品]

转载 作者:行者123 更新时间:2023-12-04 08:36:52 29 4
gpt4 key购买 nike

我需要按不同类别过滤我网站上的产品。例如,如果您选择“DRINKS”类别,它将向我显示属于该类别的产品。
为了更好地解释自己。
我需要按类别过滤我网站的出版物 [产品],例如,在选择一个类别时说“饮料”,只显示属于该类别的出版物 [产品]。
数据库 [图像]
分类
database categories image
帖子 [产品]
database post [product] image
例如,选择“饮料”类别时,仅显示标有此类别的产品,在本例中为“产品”
这是我目前的代码:
代码显示类别中的产品.php [索引]

<?php include($_SERVER['DOCUMENT_ROOT'].'/app/controllers/products.php');
include('app/includes/categories.php');
$categorias = selectAll('categories');
$capitulos = selectAll('products');

<div class="productos-list">

<?php foreach ($productos as $key => $producto): ?>
<ul>
<a href="/ver/productos.php?id=<?php echo $producto['id']?>">
<li class="producto-name"><?php echo $producto['name']?></li>
</a>
</ul>
<?php endforeach; ?>
</div>
产品.PHP
<?php 

include($_SERVER['DOCUMENT_ROOT'].'/app/database/db.php');
include($_SERVER['DOCUMENT_ROOT'].'/app/helpers/validatePost.php');

$table = 'posts';
$categorias = selectAll('categorias');

$errors = array();
$id = '';
$title = '';
$productos = '';
$categoria_id = '';

$productos = selectAll($table);


if (isset($_POST['add-post'])) {
$_POST['topic_id']=serialize($_POST['topic_id']);
$errors = validatePost($_POST);

if (!empty($_FILES['image']['name'])) {
$image_name = time() . '_' . $_FILES['image']['name'];
$destination = "../../images/" . $image_name;

$result = move_uploaded_file($_FILES['image']['tmp_name'], $destination);

if ($result){
$_POST['image'] = $image_name;
} else {
array_push($errors, "¡Algo fallo al subir la imagen!");
}


} else {
array_push($errors, "¡Necesitas subir una imagen!");
}

if (count($errors) === 0){
unset($_POST['add-post']);
$post_id = create($table, $_POST);
$_SESSION['message'] = '¡Post creado correctamente!';
$_SESSION['type'] = 'success';
header('location: ../../admin/posts/index.php');
exit();
} else {
$id = $_POST['id'];
$title = $_POST['title'];
$topic = $_POST['categoria_id'];
}
}

if (isset($_GET['id'])){
$id = $_GET['id'];
$post = selectOne($table, ['id' => $id]);
}

if (isset($_GET['del_id'])){
$id = $_GET['del_id'];
$count = delete($table, $id);
$_SESSION['message'] = '¡Post eliminado correctamente!';
$_SESSION['type'] = 'success';
header('location: ../../admin/posts/index.php');
exit();
}

if (isset($_POST['update-post'])){
$errors = validateEdit($_POST);

if (count($errors) === 0){
$id = $_POST['id'];
unset($_POST['update-post'], $_POST['id']);
$post_id = update($table, $id, $_POST);
$_SESSION['message'] = '¡Post actualizado correctamente!';
$_SESSION['type'] = 'success';
header('location: ../../admin/topics/index.php');
exit();
} else {
$id = $_POST['id'];
$title = $_POST['title'];
$topic = $_POST['categoria_id'];
}
}
?>
类别.PHP
<?php 

include($_SERVER['DOCUMENT_ROOT'].'/app/database/db.php');
include($_SERVER['DOCUMENT_ROOT'].'/app/helpers/validateCategoria.php');

$table = 'categorias';

$errors = array();
$id = '';
$name = '';
$title = '';
$productos = '';
$categoria_id = '';

$categorias = selectAll($table);


if (isset($_POST['add-post'])) {
$errors = validateCategoria($_POST);

if (count($errors) === 0){
unset($_POST['add-post']);
$post_id = create($table, $_POST);
$_SESSION['message'] = '¡Categoria creada correctamente!';
$_SESSION['type'] = 'success';
header('location: ../../admin/categorias/index.php');
exit();
} else {
$id = $_POST['id'];
$name = $_POST['name'];
}
}

if (isset($_GET['id'])){
$id = $_GET['id'];
$post = selectOne($table, ['id' => $id]);
}

if (isset($_GET['del_id'])){
$id = $_GET['del_id'];
$count = delete($table, $id);
$_SESSION['message'] = '¡Categoria eliminada correctamente!';
$_SESSION['type'] = 'success';
header('location: ../../admin/categorias/index.php');
exit();
}

if (isset($_POST['update-post'])){
$errors = validateEdit($_POST);

if (count($errors) === 0){
$id = $_POST['id'];
unset($_POST['update-post'], $_POST['id']);
$post_id = update($table, $id, $_POST);
$_SESSION['message'] = '¡Categoria actualizada correctamente!';
$_SESSION['type'] = 'success';
header('location: ../../admin/categorias/index.php');
exit();
} else {
$id = $_POST['id'];
$name = $_POST['name'];

}
}
?>


DB.PHP
<?php

session_start();
require('connect.php');

function dd($value)
{
echo "<pre>", print_r($value, true), "</pre>";
die();
}


function executeQuery($sql, $data)
{
global $conn;
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$stmt = $conn->prepare($sql);
$values = array_values($data);
$types = str_repeat('s', count($values));
$stmt->bind_param($types, ...$values);
$stmt->execute();
return $stmt;
}


function selectAll($table, $conditions = [])
{
global $conn;
$sql = "SELECT * FROM $table";
if (empty($conditions)) {
$sql = $sql . " ORDER BY id DESC";
$stmt = $conn->prepare($sql);
$stmt->execute();
$records = $stmt->get_result()->fetch_all(MYSQLI_ASSOC);
return $records;
} else {
// $sql = "SELECT * FROM $table WHERE username='ElVictox' AND admin=1";

$i = 0;
foreach ($conditions as $key => $value) {
if ($i === 0){
$sql = $sql . " WHERE $key=?";

} else {
$sql = $sql . " AND $key=?";
}
$i++;
}

$stmt = $conn->prepare($sql);
$values = array_values($conditions);
$types = str_repeat('s', count($values));
$stmt->bind_param($types, $values);
$stmt->execute();
$records = $stmt->get_result()->fetch_all(MYSQLI_ASSOC);
return $records;
}
}



function selectOne($table, $conditions)
{
global $conn;
$sql = "SELECT * FROM $table ";

$i = 0;
foreach ($conditions as $key => $value) {
if ($i === 0){
$sql = $sql . " WHERE $key=?";

} else {
$sql = $sql . " AND $key=?";
}
$i++;
}
$sql = $sql . " LIMIT 1";
$stmt = executeQuery($sql, $conditions);
$records = $stmt->get_result()->fetch_assoc();
return $records;
}

function create($table, $data)
{
global $conn;
$sql = "INSERT INTO $table SET ";

$i = 0;
foreach ($data as $key => $value) {
if ($i === 0){
$sql = $sql . " $key=?";

} else {
$sql = $sql . ", $key=?";
}
$i++;
}
$stmt = executeQuery($sql, $data);
$id = $stmt->insert_id;
return $id;

}

function update($table, $id, $data)
{
global $conn;
$sql = "UPDATE $table SET ";

$i = 0;
foreach ($data as $key => $value) {
if ($i === 0){
$sql = $sql . " $key=?";

} else {
$sql = $sql . ", $key=?";
}
$i++;
}

$sql = $sql . " WHERE id=?";
$data['id'] = $id;
$stmt = executeQuery($sql, $data);
return $stmt->affected_rows;

}


function delete($table, $id)
{
global $conn;
$sql = "DELETE FROM $table WHERE id=?";

$stmt = executeQuery($sql, ['id' => $id]);
return $stmt->affected_rows;

}
编辑:我没有错误地显示类别中的产品,我想做的是专门在其类别中显示它们。例如,我选择“饮料”类别,我希望它只显示饮料产品。
目前我碰巧所有产品都显示在所有类别中,例如在“饮料”类别中显示所有产品,包括那些不属于它的产品。

最佳答案

您需要使用连接使用。 mysqli 的例子
文件1.php

<?php
$db = new mysqli(ip,username,password,db);
$query = $db->prepare("SELECT * FROM products INNER JOIN categorias ON product.categoria_id = categorias.id WHERE categorias.name = ?");
$query->bind_param("s",$categoria);
$query->execute();
$coll = $query->get_result();
$query->store_result();
$elements = [];
while ($row = $coll->fetch_assoc()){
$elements[] = $row; // products where categorias.name = $categoria
}
?>
索引.php
  <?php 
include "file1.php";

foreach ($elements as $element){
echo $element["name"];
}
?>

关于php - 如何过滤属于特定类别的帖子 [产品],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64761500/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com