묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
가로출력할수 있게 도와주세요
2003.11.21 12:48
<?
for($i= $start ; $i <$end ; $i++){
if($city){
$result = mysql_query("SELECT * FROM zetyx_member_table where city like '%$city%' and country like '%$country%' and no>1 order by no limit $i, 1");
$rows = mysql_num_rows($result);
}else{
$result = mysql_query("SELECT * FROM zetyx_member_table where city like '%$city%' and country like '%$country%' and no>1 order by no limit $i, 1");
$rows = mysql_num_rows($result);
}
if($rows){
while($data=mysql_fetch_array($result)){
$num = $i + 1;
if($data[no]) {
?>
<tr>
<td>내용</td>
</tr>
<?
}//while문 끝
}// if문 끝
}// for문 끝
?>
이렇게 소스가 되어 있는데 여기서 <td>와 <tr>을 이용해서 가로 출력을 3~4개정도 할예정입니다...
위 소스중 어느 부분을 어떻게 고쳐야 할지 가르쳐 주세요..
지난번 어느분이 가르쳐준 대로 했는데 에러가 계속해서 나서 문제더군요...
제발 가르쳐 주세요...
가로출력은 3~4개정도 할것입니다...
for($i= $start ; $i <$end ; $i++){
if($city){
$result = mysql_query("SELECT * FROM zetyx_member_table where city like '%$city%' and country like '%$country%' and no>1 order by no limit $i, 1");
$rows = mysql_num_rows($result);
}else{
$result = mysql_query("SELECT * FROM zetyx_member_table where city like '%$city%' and country like '%$country%' and no>1 order by no limit $i, 1");
$rows = mysql_num_rows($result);
}
if($rows){
while($data=mysql_fetch_array($result)){
$num = $i + 1;
if($data[no]) {
?>
<tr>
<td>내용</td>
</tr>
<?
}//while문 끝
}// if문 끝
}// for문 끝
?>
이렇게 소스가 되어 있는데 여기서 <td>와 <tr>을 이용해서 가로 출력을 3~4개정도 할예정입니다...
위 소스중 어느 부분을 어떻게 고쳐야 할지 가르쳐 주세요..
지난번 어느분이 가르쳐준 대로 했는데 에러가 계속해서 나서 문제더군요...
제발 가르쳐 주세요...
가로출력은 3~4개정도 할것입니다...