[PHP] pobierz, plaintext <?phpforeach ($news as $id => list($title, $content, $author)) { echo '<h2>' . $title . ' </h2>'; echo $content; echo '<p class="author">'. $author .'</p>';}?>[PHP] pobierz, plaintext
[PHP] pobierz, plaintext foreach ($news as $id => $tab){ list($title, $content, $author) = $tab; echo '<h2>' . $title . ' </h2>'; echo $content; echo '<p class="author">'. $author .'</p>';}[PHP] pobierz, plaintext
[PHP] pobierz, plaintext list($title, $content, $author) = $tab;[PHP] pobierz, plaintext
[PHP] pobierz, plaintext $id = list($title, $content, $author);[PHP] pobierz, plaintext