-2

html-phpコンテンツを含むdivcssボックスが毎回必要です。1行に6個のボックスが存在する場合、6個のボックスの下で自動開始され、Facebookアルバムのように動作します。すべての行に4枚の写真写真は必要ありませんが、*。phpファイルを含み、同じページのフォームから生成されるdiv cssボックスが必要です。たとえば、フォーム名としてJohnDoeを1つのボックスに入れてBillClintonを指定します。 2番目のボックスなど。

これが私の試みです

 <body>
 <div class="header">
 header
 </div>
 <?php
$dir= opendir(".") or die ('Cannot open directory');
$div="<div class=\"left1\">\n";
echo "<div class=\"wrapper\">\n";
for( $i=0; $i<6; $i++){
    while(($file = readdir($dir)) != false){
    if(preg_match("/php$/", $file)){
    echo $div;
    include($file); 
    echo "</div>\n";
    }
    }
}
echo "</div>\n";

?>
</body>
</html>

しかし、それは私が望むようには機能しません。

4

1 に答える 1

2

次のようにしてください:

<?php 

for($j=1; $j < 13; $j++) : 

print '<div style="float:left;width:100px">';

    print 'your content here for the div. change width and loop numbers as needed';

print '</div>';

//magic is here
if($j%6==0) print '<div style="clear:both;"></div>';

endfor; 
于 2012-06-23T07:47:14.793 に答える