Huyxvn wrote:
Sau khi đã truy xuất và lấy đc dữ liệu trong mySQL, em dùng hàm này để lặp các giá trị
while ($row = $db->sql_fetchrow($result)) {
$catid = intval($row['catid']);
$parentid = $row['parentid'];
$title = $row['title'];
$boxstuff .= "<div class=\"content\" onclick=\"SwitchMenu('sub$i')\">$title</div>\n";
Em muốn mỗi lần lặp thì $i sẽ tăng thêm một giá trị, có cách nào ko ạ. Mong các bác chỉ dùm em
Code:
$i=0;
while ($row = $db->sql_fetchrow($result)) {
$catid = intval($row['catid']);
$parentid = $row['parentid'];
$title = $row['title'];
$boxstuff .= "<div class=\"content\" onclick=\"SwitchMenu('sub[b]$i[/b]')\">$title</div>\n";
$i++;
ok không bạn