Tablolar Ve PHP ile Sorunları

0 Cevap php

Ben bir tablo doldurmak için bu kodu kullanıyorum:

<style type="text/css">
table, td
{
    border-color: #600;
    border-style: solid;
}

table
{
    border-width: 0 0 1px 1px;
    border-spacing: 0;
    border-collapse: collapse;
}

td
{
    margin: 0;
    padding: 4px;
    border-width: 1px 1px 0 0;
    background-color: #FFC;
}
</style>

<table>
<tr>
<th>Files</th>
</tr>
<?php
foreach(new DirectoryIterator('/home/nathanpc/public_html') as $directoryItem) {
    if($directoryItem->isFile()) {
        printf('<td><tr><a href="/%1$s">%1$s</a></tr></td>', $directoryItem->getBasename());
    }
} ?>
</table>

Onu denemek Ama, ne var masanın dışında değerler oldu, ve tüm dağınık. Burada sunucu üzerinde: http://surl.x10.mx/list.php

0 Cevap