您好我想从表中获取不同的列数据。 我的代码如下。 我怎样才能使季节专栏明显?
<div class="episodes">
<?php
$name=$_GET['name'];
$select=mysql_query("select * from data where name='$name'");
while($show=mysql_fetch_array($select))
{ ?>
<div class="episodes_data">
<div class="t_s_pic">
<a href="#" style="text-decoration:none;"><img src="admin/photo/movieForsaken-2016-movie-Justin-Price-6-355x500.jpg" height="100%" width="100%"/></a>
</div>
<div class="t_s_name"><h3><a href="">Game Of Thrones<br/>season<?php echo $show['season'];?></a></h3></div>
<div class="t_s_download"><a href="">Download series</a></div>
</div>
<?php } ?>
</div><br>
答案 0 :(得分:0)
要获得不同的列,您不应该使用select *通过明确选择您需要的列,例如:
select distinct column1, column2, column3 from data where name='$name'