English 中文(简体)
为什么赢得这种有活力的创造的<div>?
原标题:Why won t this dynamically-generated <div> display?

Okay, so on my website I have a slider thingy, where it um "slides" between things, and on the homepage, when the page loads it checks the database to see if Column discounts has a value of 1 (or greater than 0, to be precise), which means that if($discounts>0){//do something;} so, if the value inside the discount column is greater than 0, it will (SHOULD) display a dynamically created DIV saying something like "Yay we have discounts" etc.

但是,它赢得了 t! 这只显示2个幻灯片。 但是,非洲开发银行的价值定在1,因此它应当显示第3次滑坡!

主管:

if($ddiscount >0)
{           
    $outputsy =  <div class="ambitios_slide">

                     <div class="clear"> 

                         <h1 class="ambitios_fleft"> .$dimage. </h1>

                         <div class="ambitios_sleder_title"> .$dtitle. </div>

                         <p> .$ddescription. </p>

                     </div>

                  </div> ;
 }
 else
 {
     $outputsy = null;
 }

在该机构内:

<?php if($outputsy != null) {echo $outputsy;} ?>

没有警告,没有错误。 网页的负荷是罚款的。 它从来就从未展示出充满活力的四国集团! 谁能帮助我看一看什么错了?

感谢任何帮助。

谢谢。

最佳回答

载于else 部分,尝试制定$outputsy,用于某些随机扼杀,看看是否产生产出。

并尝试使用<代码>var_dump($ddiscount);,并看到$ddiscount的实际价值是什么。 如果这个问题与预期的无关,那么这个问题可能在本法典前出现。

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签