Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
commit
  • Loading branch information
Arif Prabawa authored and Arif Prabawa committed Apr 22, 2017
1 parent 513d1ab commit bd81f51
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Wello/www/details.php
@@ -1,5 +1,5 @@
<?php
$mysqli = new mysqli("localhost", "db10e41481317066", "jXLUjNG/cQxm4VJ1SionhDKdcT4BT1Dos7sZMddIapa/8LYDpDNz+3hwGCz8Shon", "db10e41481317066");
<?php require 'cred.php';
$mysqli = new mysqli("localhost", $username, $password, $database);
if ( (isset($_GET['Well_ID'])) && (is_numeric($_GET['Well_ID'])) ) {
$Well_ID = $_GET['Well_ID'];
}
Expand Down
5 changes: 5 additions & 0 deletions cred.php
@@ -0,0 +1,5 @@
<?php
$username="db10e41481317066";
$password="jXLUjNG/cQxm4VJ1SionhDKdcT4BT1Dos7sZMddIapa/8LYDpDNz+3hwGCz8Shon";
$database="db10e41481317066";
?>

0 comments on commit bd81f51

Please sign in to comment.