8 lines
253 B
PHP
8 lines
253 B
PHP
<?php
|
|
|
|
// Simple PHP entry point that works with HHVM
|
|
echo "<h1>Welcome to MerchantsOfHope.org</h1>";
|
|
echo "<p>This is a simple PHP application running on HHVM.</p>";
|
|
|
|
// Include the main application logic if needed
|
|
// require_once __DIR__ . '/app.php';
|