即時試圖創建一個PHP腳本,當一個新用戶註冊時,腳本(例如:wordpress,博客等)將爲他們安裝。新用戶註冊,腳本自動創建問題!
我目前得到的代碼如下,只是單一設置,,但我怎樣才能爲多用戶設置表單?只允許他們輸入用戶名(子域名)和密碼。
<?php
class scriptname_Config {
public static $title = 'new_script_title';
// Domain name and path where new script will installed in
public static $domain = 'username.domain.com';
public static $absolutePath = '/new_register_username/';
// Settings for general mysql database
public static $db = array(
'host' => 'localhost',
'database' => 'scriptname',
'user' => 'root',
'password' => '',
'prefix' => 'scriptname_'
);
}
define('scriptname_BASE_URL', 'http://'.scriptname_Config::$domain.scriptname_Config::$absolutePath);
?>
或任何教程,將有助於表示讚賞!謝謝!
我想通過子域名你想要的東西一樣,user1.site.com; user2.site.com; user3.site.com? – phoenix24 2010-04-30 19:04:02
多數民衆贊成在正確的,感謝糾正 – SKY 2010-04-30 19:05:29