Quote:
|
Originally Posted by mdhall
Sites such as www.phpfreaks.com have a lot of tutorials to explain php, as well as programs you can download.
|
Dont go there, they steal peoples code, happened to me.
Try making functions, you know how to connect to mysql etc right?
function Connect_To_Database() {
// Put the connection stuff in here
require ("./mysql_user_config.php");
connect to $user $pass etc etc
set $user and $pass etc in the mysql_user_config.php file
}
Simply do this to call the function
Connect_To_Database();
Saves alot of time.