I write this code
include('database.php');
function get_something() {
database instructions
}
function get_another(){
database instructions
}
and I try to fix by this
function get_something() {
include('database.php');
database instructions
}
function get_another(){
include('database.php');
database instructions
}
I get redeclaration error .
how can I fix this ?
Thanks