Hello I have created a file name connect.php and code of this file is as below
<?php
$db_server = 'localhost';
$db_username = 'myweb_user';
$db_password = 'Aunhy125$%';
$db_table='main_table';
?>
To connect database I used to include_once() function. What may be the problem for this. Or what would be be best way to connect database. Is there any security problem what I m using. Please help me or suggest me.