首页 > 解决方案 > 正确编写php代码和html - PHP

问题描述

我不知道如何称呼这种情况在技术行列中,我将发布两个功能齐全的代码,我的目标是能够以对我来说更“简单”的方式编写我的代码。

在我将在下面发布的代码中,我正在初始化一个 while 循环,但是这种写作形式使我有可能不会在 php 回显所必需的单引号之间失去无聊的时间,因为我可以插入免费的 html 代码以构建更容易的前端部分

<?php

session_start();

include 'FILE_DI_CONNESSIONE';

$id = $_SESSION['id'];

$query_string = "QUERY";

$query = mysqli_query($VARIABILE_FILE_DI_CONNESSIONE, $query_string);

?>



<?php

while($row = mysqli_fetch_assoc($query)){ ?>

HTML   <?php echo $row['NOME_CAMPO_TABELLA'] ;?>   HTML

<?php } ?>

在这里我们来到了问题的核心,我有另一段代码,但我试图打破我的头,但没有任何结果我希望有可能编写上面的代码以便编写更快的 html 部分

<?php
//fetch.php
include '../../../connessione.php';
$output = '';
if(isset($_POST["query"]))
{
 $cerca = mysqli_real_escape_string($connessione, $_POST["query"]);
 $query = "
  SELECT * FROM table 
  WHERE nome_cliente LIKE '%".$cerca."%'
  OR cognome_cliente LIKE '%".$cerca."%' 
  OR azienda_cliente LIKE '%".$cerca."%' 
  OR telefono_cliente LIKE '%".$cerca."%' 
  OR email_cliente LIKE '%".$cerca."%'
 ";

}
else
{
 $query = "SELECT * FROM table ORDER BY id_cliente";
}

$result = mysqli_query($connessione, $query);
if(mysqli_num_rows($result) > 0)
{
 $output .= '
  <div class="table-responsive">
   <table class="table table bordered">
    <tr>
     <th>Customer Name</th>
     <th>cognome_cliente</th>
     <th>azienda_cliente</th>
     <th>Postal Code</th>
     <th>email_cliente</th>
    </tr>
 ';
 while($row = mysqli_fetch_array($result))
 {
  $output .= '
   <tr>
    <td>'.$row["nome_cliente"].'</td>
    <td>'.$row["cognome_cliente"].'</td>
    <td>'.$row["azienda_cliente"].'</td>
    <td>'.$row["telefono_cliente"].'</td>
    <td>'.$row["email_cliente"].'</td>
   </tr>
  ';
 }
 echo $output;
}
else
{
 echo 'Nessun risultato corrisponde alla tua ricerca';
}

?>

标签: phphtml

解决方案


您可以使用以下代码:

if(mysqli_num_rows($result) > 0)
{
?>
  <div class="table-responsive">
   <table class="table table bordered">
    <tr>
     <th>Customer Name</th>
     <th>cognome_cliente</th>
     <th>azienda_cliente</th>
     <th>Postal Code</th>
     <th>email_cliente</th>
    </tr>
<?php
 while($row = mysqli_fetch_array($result))
 {
?>
   <tr>
    <td><?php echo $row["nome_cliente"]; ?></td>
    <td><?php echo $row["cognome_cliente"]; ?></td>
    <td><?php echo $row["azienda_cliente"]; ?></td>
    <td><?php echo $row["nome_cliente"]; ?></td>
    <td><?php echo $row["email_cliente"]; ?></td>
   </tr>
  <?php
 }

推荐阅读