properties.inc.php
来自「一个页面界面的邮件程序」· PHP 代码 · 共 32 行
PHP
32 行
<?php require_once("constants.inc.php"); // Database informations define("DB_HOST", "localhost"); define("DB_NAME", "gcontact"); define("DB_USER", "gcontact"); define("DB_PASS", "GC0NT4CT"); // Restricted access to admin path ? define("ADMIN_RESTRICTED_ACCESS", true); // Admin user define("ADMIN_USERNAME", "root"); define("ADMIN_PASSWORD", "GC0NT4CT"); // URL where the app is located define("URL", "www.server.com/GContact"); // Does your server support SSL ? define("SSL", true); // Default language define("DEFAULT_LANG", FRENCH); // Name and email for notifications define("EMAIL_FROM_NAME", "GContact"); define("EMAIL_FROM_ADDRESS", "noreply@gcontact.com"); // Compress file if user-agent supports it ? define("COMPRESS_PAGES", true); ?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?