14 lines
332 B
PHP
14 lines
332 B
PHP
<?php
|
|
/*
|
|
To run sample application you need to have:
|
|
- PHP
|
|
- mysqli
|
|
|
|
To install application, just make sure that your mysqli running and load index.php
|
|
after entering suitable (for you) information below
|
|
*/
|
|
$mysqli_host = "localhost";
|
|
$mysqli_user = "root";
|
|
$mysqli_pasw = "1";
|
|
$mysqli_db = "sampleDB";
|
|
?>
|