diff options
Diffstat (limited to 'backend/php-mysql')
-rw-r--r-- | backend/php-mysql/index.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/backend/php-mysql/index.php b/backend/php-mysql/index.php index 7675ef1..b1f8244 100644 --- a/backend/php-mysql/index.php +++ b/backend/php-mysql/index.php @@ -1,4 +1,5 @@ <?php + set_time_limit(0); function setup_saveloadlist() { define("SERVER","localhost"); define("USER",""); @@ -7,9 +8,9 @@ define("TABLE","wwwsqldesigner"); } function setup_import() { - define("SERVER","tv1.dev"); - define("USER","tvprogram"); - define("PASSWORD","xxx"); + define("SERVER","localhost"); + define("USER",""); + define("PASSWORD",""); define("DB","information_schema"); } function connect() { |