⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 properties.inc.php

📁 一个页面界面的邮件程序
💻 PHP
字号:
<?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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -