search
HomeBackend DevelopmentPHP Tutorial 一段逻辑判断,实现不了目的

一段逻辑判断,实现不了目的,求助
想只用一个页面,显示新闻系统的三种功能:"index.php?news_title=xxx?news_class=xxx",需要达到以下目的:

1,当news_title和news_class元素均为空或者都有值时,该页面显示全部新闻的标题列表;

2,当news_title和news_class两个元素中,一个有值另一个无值时,该页面显示元素有值的内容。

------算法逻辑和代码实现:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
//首先,取得浏览器的传值:news_title和news_class
if(isset($_GET['news_class']))
{
  $news_class=$_GET['news_class'];
}
else
{
  $news_class='';
}
 
if(isset($_GET['news_title']))
{
  $news_title=$_GET['news_title'];
}
else
{
  $news_title='';
}

//然后开始判断,准备显示有关的内容

if ($news_title='')//当news_title元素为空时,开始判断news_class元素是否为空
{
   if ($news_class='')//news_class也为空,则该页面显示所有news表的news_title列表
    {
      $sql="SELECT news_title,in_time FROM news";
      $result = mysql_query($sql);
       while ($row=mysql_fetch_assoc($result))
             {
?>             
        <tr>
          <td>
        <?php echo $row['news_title']; ?>
        <?php echo $row['in_time']; ?>
      </td>
        </tr>
<?php }
mysql_free_result($result);
    }
    else//当news_class不为空,则该页面显示news_class的相关内容
    {
      $sql="SELECT * FROM news where news_class='$news_class'";
      $result = mysql_query($sql);
       while ($row=mysql_fetch_assoc($result))
             {
?>             
        <tr>
          <td>
<?php echo $row['news_title']; ?>
              <?php echo $row['in_time']; ?>
          </td>
        </tr>
<?php }
mysql_free_result($result);
    }
}
else  //当news_title不为空值时,开始判断news_class是否为空
{
   if ($news_class='')//news_class为空,则该页面show出news_title的相关数据
    {
      $sql="SELECT * FROM news where news_title='$news_title'";
      $result = mysql_query($sql);
       while ($row=mysql_fetch_assoc($result))
             {
?>             
        <tr>
          <td> <?php echo $row['news_title']; ?>
               Author : <?php echo $row['news_author']; ?> 
               Date : <?php echo $row['in_time']; ?> 
                      <?php echo $row['news_content']; ?>
      </td>
        </tr>
<?php }
mysql_free_result($result);      
    }
    else//当news_class也不为空值时,则该页面显示所有news表的数据(和两者都为空时一样)
    {
      $sql="SELECT news_title,in_time FROM news";
      $result = mysql_query($sql);
       while ($row=mysql_fetch_assoc($result))
             {
?>             
        <tr>
          <td>
<?php echo $row['news_title']; ?>
          <?php echo $row['in_time']; ?>
      </td>
        </tr>
<?php }
mysql_free_result($result);      
    }
}



以上代码在最终显示时,全部显示为新闻的标题列表了,即:new_title列表。

敢问各位大虾,我这逻辑错了,还是写法有问题?


------解决方案--------------------
你这样写不太好呢。

你请求数据与逻辑与表现的html代码都搞在一起,
最好是先逻辑判断好。再去请求数据。最后一个foreach出html。

看你代码很吃力不如从新写了。=_=zzz
------解决方案--------------------
index.php?news_title=xxx?news_class=xxx
中的参数串,不是常规的格式
常规的是 index.php?news_title=xxx&news_class=xxx

你个到的是 array( 'news_title' => 'xxx?news_class=xxx')
需加工后方可使用 

------解决方案--------------------
PHP code
if ($a && $b) {
    // 显示全部
} elseif ($a) {
    ;
} elseif ($b) {
    ;
}
<br><font color="#e78608">------解决方案--------------------</font><br>url 要写作 index.php?news_title=xxx&news_class=xxx<br><br>$news_title = $news_class = '';<br>if(isset($_GET['news_title'])) $news_title = $_GET['news_title'];<br>if(isset($_GET['news_class'])) $news_class = $_GET['news_class'];<br><br>if($news_title != '' && $news_class != '') {<br> //两个都有 <div class="clear">
                 
              
              
        
            </div>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

Python中的class类和method方法的使用方法Python中的class类和method方法的使用方法Apr 21, 2023 pm 02:28 PM

类和方法的概念和实例类(Class):用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。方法:类中定义的函数。类的构造方法__init__():类有一个名为init()的特殊方法(构造方法),该方法在类实例化时会自动调用。实例变量:在类的声明中,属性是用变量来表示的,这种变量就称为实例变量,实例变量就是一个用self修饰的变量。实例化:创建一个类的实例,类的具体对象。继承:即一个派生类(derivedclass)继承基类(baseclass)的

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

使用jQuery替换元素的class名称使用jQuery替换元素的class名称Feb 24, 2024 pm 11:03 PM

jQuery是一种经典的JavaScript库,被广泛应用于网页开发中,它简化了在网页上处理事件、操作DOM元素和执行动画等操作。在使用jQuery时,经常会遇到需要替换元素的class名的情况,本文将介绍一些实用的方法,以及具体的代码示例。1.使用removeClass()和addClass()方法jQuery提供了removeClass()方法用于删除

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

python中class是什么意思python中class是什么意思May 21, 2019 pm 05:10 PM

class是python中的一个关键字,用来定义一个类,定义类的方法:class后面加一个空格然后加类名;类名规则:首字母大写,如果多个单词用驼峰命名法,如【class Dog()】。

SpringBoot怎么通过自定义classloader加密保护class文件SpringBoot怎么通过自定义classloader加密保护class文件May 11, 2023 pm 09:07 PM

背景最近针对公司框架进行关键业务代码进行加密处理,防止通过jd-gui等反编译工具能够轻松还原工程代码,相关混淆方案配置使用比较复杂且针对springboot项目问题较多,所以针对class文件加密再通过自定义的classloder进行解密加载,此方案并不是绝对安全,只是加大反编译的困难程度,防君子不防小人,整体加密保护流程图如下图所示maven插件加密使用自定义maven插件对编译后指定的class文件进行加密,加密后的class文件拷贝到指定路径,这里是保存到resource/corecla

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)