HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/_domains/michaelhorowitzmd.com/sections/articles.php
<div class="section-wrapper z-depth-1">
    <div class="section-icon col s12 m12 l2">
        <i class="fad fa-newspaper"></i>
    </div>
    <div class="custom-content col s12 m12 l10 fadeIn a1" data-wow-delay="0.1s" >
        <h2>Published Articles</h2>

        <ol class="articles">
            <?php
            $pubs = file('publications.txt');
            foreach ($pubs as $p) {
                $p = explode('||',$p);
                $out = '<li>';
                if (strlen($p[1]) > 10) { $out .= '<a href="'.$p[1].'" class="blacktext" target="_blank">'; }
                $out .= $p[0];
                if (strlen($p[1]) > 10) { $out .= '</a>'; }
                $out .= '</li>';
                echo $out;
                //echo '<pre>',print_r($p),'</pre>';
            }
            ?>
        </ol>
    </div>
</div>