Files
cs2440/catalog/components/foot.php
T
2025-05-01 14:37:08 -06:00

19 lines
257 B
PHP

</body>
<footer>
<?php
$scripts = '';
switch ($_SERVER['SCRIPT_NAME']) {
case '/index.php':
$scripts .= '<script src="js/login.js"></script>';
break;
}
echo $scripts;
?>
</footer>
</html>