summaryrefslogtreecommitdiffstats
path: root/backend/php-mysql/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'backend/php-mysql/index.php')
-rw-r--r--backend/php-mysql/index.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/backend/php-mysql/index.php b/backend/php-mysql/index.php
index 03bbefc..2227eb9 100644
--- a/backend/php-mysql/index.php
+++ b/backend/php-mysql/index.php
@@ -23,10 +23,9 @@
}
$res = mysqli_select_db($this->getLink(), DB);
if (!$res){
- // try to create the DataBase and table
- if(!$this->setup_first_time()){
- return false;
- }
+ // Data Base Not configured
+ echo "You have to configure the DataBase";
+ return false;
}
return true;
}