Features: - Complete Luftglanz drone cleaning website - AI chat assistant integrated with OpenAI API - Expert product advice for AGO Quart and Mellerud cleaning products - Formal German language support (Sie form) - Secure PHP backend for API calls - Responsive design with mobile support - Product-specific knowledge base - Safety statements from manufacturers - Multi-page integration (index, products, services, contact) Technical components: - AI chat widget (js/ai-chat.js) - Chat styling (css/components/ai-chat.css) - Backend API (ai-chat-api.php) - Product knowledge base with detailed specifications - Demo and documentation files
13 lines
369 B
PHP
13 lines
369 B
PHP
<?php
|
|
header('Content-Type: text/html');
|
|
echo "<html><body>";
|
|
echo "<h1>PHP Test</h1>";
|
|
echo "<p>PHP is " . (function_exists('mail') ? 'working' : 'not working') . "!</p>";
|
|
echo "<p>PHP Version: " . phpversion() . "</p>";
|
|
echo "<p>Server Software: " . $_SERVER['SERVER_SOFTWARE'] . "</p>";
|
|
echo "<pre>PHP Info:\n\n";
|
|
phpinfo();
|
|
echo "</pre>";
|
|
echo "</body></html>";
|
|
?>
|