Initial commit: Luftglanz drone website with integrated AI chat assistant
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
This commit is contained in:
12
phptest.php
Normal file
12
phptest.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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>";
|
||||
?>
|
||||
Reference in New Issue
Block a user