hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache/2.4.52 (Ubuntu)
System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User : servadmin ( 1000)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
Directory :  /www/docs/video.obu.edu/panic/modules/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /www/docs/video.obu.edu/panic/modules/bubblelist.module.php
<?php

$items = array(
    // 'bubble' => 'line'
    '4|orange'  => '1:02',
    '9|red'     => '9 min',
    '14|red'    => '5 min',
    '19|red'    => '11 min',
    '20|orange' => '3:55'
);

?>

<ul>
    <?php foreach($items as $bubble => $line) { 
        $bubble = explode('|', $bubble);
        $color  = $bubble[1];
        $bubble = $bubble[0];
        ?>
        <li>
            <span class='<?php echo $color ?> bubble'>
                <span class='display'><?php echo $bubble ?></span>
            </span>
            <span class='content'><?php echo $line ?></span>
        </li>
    <?php } ?>
</ul>

Al-HUWAITI Shell