I am displaying description of an item on my website. I need to show full content on desktop view and ellipsis on mobile. So i created two element and show/hide the element as per the window width. But if both of my element is on html, 500 (Internal server error) status is rendering. If remove one element, it is working good.
Here is my code
<?php
$desc = "";
if(!empty($evVal["desc"])){
$desc = trim($evVal["desc"]);
}
?>
<div class="desktop_site"><?php echo $desc; ?></div>
<p class="mobile_site hide"><?php echo $desc; ?></p>