there is no different between Rock and Blog

Script Block untuk melihat file dari WebFM di Drupal

<?php

$result = db_query(“SELECT fpath FROM webfm_file order by fid desc limit 0,4 “);

$items = array();

while ($row = db_fetch_object($result)) 

{

$palsu   = array(“/”,”sites”, “default”, “files”,”webfile”,”FileKanwil”);

$asli = array(“”,”“,”“,”“,”“,”“);

$linknya = str_replace($palsu, $asli, $row->fpath);

?>

<tr>

<td>

<ul><li><a href=”<? echo $row->fpath;?>”><?echo $linknya;?></a></ul></li>

</td>

</tr>

<?

}

?>

<tr>

<td><br>

<a href=”http://riau.kemenkumham.go.id/webfm”>

<ul><li>File Lainnya</li></ul></a>

</td></tr>