「PHP入門」foreach文で配列要素を読み出し、表示処理方法

1.レコードを読み出す
while($row=mysql_fetch_array($result))
{$record[]=array(
'title’=>$row['title’],
'body’=>$row['body’],);
}

$smarty->assign('yes’, $record);//変数置換

2.画面にデータを表示
{foreach item=news from=$yes}
{$news.title}:{$news.body}
<br>
{/foreach}

PHP

Posted by arkgame