Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have array

 $mas = array("aaa","bbb","ccc","ddd","fff");

I want print this array so:

 aaa bbb
 ccc ddd
 fff

I do not wondered, how to make html/css for this, please tell me

share|improve this question

2 Answers

CSS:

span.row {
  display:block;
}

span.margin {
  display:inline-block;
  margin-right:10px;
}

PHP:

$mas = array("aaa","bbb","ccc","ddd","fff");

echo '<span class="row">';

for($i = 0; $i < count($mas); $i++) {
  echo $i % 2 == 0 ? '</span><span class="row">';
  echo '<span class="margin">' . $mas[$i] . '</span>';
}

echo '</span>';
share|improve this answer

If you want to print an array with two items per line, you can try the following:

<?php
$output = "<div>";
for($i = 0; $i < count($mas); $i++)
{
    if($i % 2 == 0)
        $output .= "<p>".$mas[$i]." ";
    else
        $output .= $mas[$i]."</p>";
}
echo $output."</div>";

Use CSS to style the <p> tags to your liking with regards to spacing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.