Sindbad~EG File Manager
<?php
// Simple test to check if PHP is working correctly
echo "PHP is working correctly<br>";
?>
<!DOCTYPE html>
<html>
<head>
<title>Simple Cards Test</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 p-8">
<h1 class="text-2xl font-bold mb-4">Simple Cards Test</h1>
<p>This should render normally without any code showing.</p>
<div class="mt-4">
<button onclick="testFunction()" class="bg-blue-500 text-white px-4 py-2 rounded">
Test JavaScript
</button>
</div>
<div id="output" class="mt-4 p-4 bg-white rounded shadow"></div>
<script>
function testFunction() {
document.getElementById('output').innerHTML = 'JavaScript is working correctly!';
console.log('Test function executed');
}
console.log('Script loaded successfully');
</script>
</body>
</html>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists