Jump to content
php.lv forumi

Recommended Posts

Posted (edited)

man nepieciešams palīgs kurš varētu palīdzēt ieprogrammēt to php lai rāda mapes saturu kā linkus nevis kā parastu tekstu kas parāda mapes saturu pārlūkā.

 

<?php

$handle=opendir(".";);
while (($file = readdir($handle))!==false) {
echo "$file <br>";
}
closedir($handle);

?>

Edited by lāčgrrrriezis
Posted
<?php

$handle=opendir(".");
while (($file = readdir($handle))!==false) {
echo "<a href='$file'>$file</a> <br>";
}
closedir($handle);

?>

Posted (edited)

Nu a tagad man krāsu nerāda, gribu lai tie linki ir ar tumši pelēko krāsu #66666 a tas nestrādā kautkādā rakā.

 

<?php

$handle=opendir(".");
while (($file = readdir($handle))!==false) {
echo '<b><font size=2 face=Arial color="#66666"><a href="'.$file.'"> '.$file.' </a></font></b></br>';
}
closedir($handle);?>

Edited by lāčgrrrriezis
Posted
<?php

$handle=opendir(".");
while (($file = readdir($handle))!==false) {
echo <a style="color: #666666; font-weight: bold; font-family: Arial;" href="'.$file.'"> '.$file.' </a></br>';
}
closedir($handle);?>

Posted

To vajag CSS'ā darīt, nevis htmlā kautko "iehakot".

a
{
 color: #666666;
 font-weight: bold;
 font-family: Arial;
}

Ja negribi to visiem linkiem, tad norādi noteiktu klasi:

.linku_klase { ... }

Un šo klasi liec visiem a elementiem class atribūtā.

Posted (edited)
<?php

$handle=opendir(".");
while (($file = readdir($handle))!==false) {
echo <a style="color: #666666; font-weight: bold; font-family: Arial;" href="'.$file.'"> '.$file.' </a></br>';
}
closedir($handle);?>

 

Ko Tu man te iedevi, tas tak neiet :D:D:D :(

Edited by lāčgrrrriezis
Posted

iemet to garo šmurgu iekš paste.php.lv

<?php

$handle=opendir(".");
while (($file = readdir($handle))!==false) {
echo '<a style="color: #666666; font-weight: bold; font-family: Arial;" href="'.$file.'"> '.$file.' </a></br>';
}
closedir($handle);?>

 

^tagad iet^

Posted
To vajag CSS'ā darīt, nevis htmlā kautko "iehakot".

 

"iehakot" :)) Uzjautrina, kaut arī pēdiņās.

 

Un vispār jau liktu nevis uzreiz class, bet piekļūtu linkam šādi: #content ul li a (tas ir paraugs un nav uzreiz jādara tā, pietam ar lielu izbrīnu, ka kaut kas neiet)

 

lāčgriezi tu vispār seko līdzi ko tu raksti vai tikai pārkopē visu?

Posted (edited)

logiš ka sekoju, un vispār tas skripts bija šāds nevis kā viens otrs man te murmulēja.

 

<?php

$handle=opendir(".");
while (($file = readdir($handle))!==false) {
echo '<b><font size="2" face="Arial" color="#66666"><a href="'.$file.'" style="color: #666666;"> '.$file.' </a></font></b></br>';
}
closedir($handle);?>

Edited by lāčgrrrriezis
×
×
  • Create New...