soupy127 Posted April 22, 2010 Share Posted April 22, 2010 Hi just wandering if anybody could help me edit this connect file so that it works with Loccalhost, root and duffers as the name of the db? function setupdb($dbuser,$pw,$dbase) { $this->dbuser=$dbuser; $this->pw=$pw; $this->dbase=$dbase; $this->db = mysql_connect('localhost',$dbuser,$pw); } Everytime i edit it i get errors ! could somebody help me please? Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/ Share on other sites More sharing options...
JAY6390 Posted April 22, 2010 Share Posted April 22, 2010 function setupdb($dbuser,$pw,$dbase) { $this->dbuser=$dbuser; $this->pw=$pw; $this->dbase=$dbase; $this->db = mysql_connect('localhost',$this->dbuser,$this->pw) or die(mysql_error()); mysql_select_db($this->dbase, $this->db) or die(mysql_error()); } Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1046463 Share on other sites More sharing options...
soupy127 Posted April 23, 2010 Author Share Posted April 23, 2010 Thanks for your help !! but wanted to know were to put localhost, root and duffers (which is the name of the database) do i have to remove the password variable as there is no password? i.e. tried this but got errors , function setupdb($dbuser,$pw,$dbase) { $this->localhost=$dbuser; $this->''=$pw; $this->duffers=$dbase; $this->db = mysql_connect('localhost',$dbuser,$pw); } thanks for your help!! Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1046983 Share on other sites More sharing options...
soupy127 Posted April 23, 2010 Author Share Posted April 23, 2010 Anybody ? Im desperate now haha Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1047292 Share on other sites More sharing options...
ChemicalBliss Posted April 23, 2010 Share Posted April 23, 2010 Find the config file rather than editing the code. -cb- Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1047295 Share on other sites More sharing options...
soupy127 Posted April 23, 2010 Author Share Posted April 23, 2010 Sorry I dont have the config file as it is actually from a Golf handicap script that is free from a website. The entire code has been attached hope this helps ! [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1047309 Share on other sites More sharing options...
Ken2k7 Posted April 23, 2010 Share Posted April 23, 2010 Not literally a file named config. He meant you need to find the configurations. I'm not looking through the files, but somewhere, there is a call to setupdb. Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1047334 Share on other sites More sharing options...
soupy127 Posted April 25, 2010 Author Share Posted April 25, 2010 Sorry im useless at this, is this what you where looking for? as when i change these values to localhost, root, duffers i get errors ! include "class.agolfhandicap.php"; $gh=new agolfhandicap(); // ######### Edit the next line to put your MySQL username, password, and database name. ######## $gh->setupdb('username','password','databasename'); thanks for the help again Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048118 Share on other sites More sharing options...
ChemicalBliss Posted April 25, 2010 Share Posted April 25, 2010 Yep thats the one. What errors are you getting? -cb- Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048146 Share on other sites More sharing options...
soupy127 Posted April 25, 2010 Author Share Posted April 25, 2010 Thanks for the reply ! When i edit the funtion to look like this $gh->setupdb('localhost','root','duffers'); duffers being the name of the database. I get these errors Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'localhost'@'localhost' (using password: YES) in C:\wamp\www\handicap system\class.agolfhandicap.php on line 65 Notice: Undefined index: user in C:\wamp\www\handicap system\agolfhandicap.php on line 19 Notice: Undefined index: delete in C:\wamp\www\handicap system\agolfhandicap.php on line 23 Notice: Undefined index: edit in C:\wamp\www\handicap system\agolfhandicap.php on line 27 Notice: Undefined variable: PHP_SELF in C:\wamp\www\handicap system\agolfhandicap.php on line 32 if i click the submit button i get even more errors !! please help if you can !! thanks again. Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048172 Share on other sites More sharing options...
ChemicalBliss Posted April 25, 2010 Share Posted April 25, 2010 lol look at what you are replacing.. $gh->setupdb('username','password','databasename'); You dont even need a hostname, replace what it says to replace with (username..password..dbname). -cb- Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048193 Share on other sites More sharing options...
soupy127 Posted April 25, 2010 Author Share Posted April 25, 2010 lol thanks, i replaced it with this $gh->setupdb('root','','duffers'); and still getting the errors Notice: Undefined index: user in C:\wamp\www\handicap system\agolfhandicap.php on line 19 Notice: Undefined index: delete in C:\wamp\www\handicap system\agolfhandicap.php on line 23 Notice: Undefined index: edit in C:\wamp\www\handicap system\agolfhandicap.php on line 27 Notice: Undefined variable: PHP_SELF in C:\wamp\www\handicap system\agolfhandicap.php on line 32 thanks again for your help !! Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048199 Share on other sites More sharing options...
ChemicalBliss Posted April 26, 2010 Share Posted April 26, 2010 Have you setup the database properly? give us this code: handicap system\agolfhandicap.php -cb- Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048291 Share on other sites More sharing options...
soupy127 Posted April 26, 2010 Author Share Posted April 26, 2010 yep have indeed ! I used the sql file that came with it ! Heres the code hope this helps [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048423 Share on other sites More sharing options...
trq Posted April 26, 2010 Share Posted April 26, 2010 You need to check that array indexes are set before attempting to access them. See isset. Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048425 Share on other sites More sharing options...
soupy127 Posted April 26, 2010 Author Share Posted April 26, 2010 soz that was the wrong class.file, as i have been trying to edit that one. here is the orignal, sorry again. I think the script itself should be ok as I think a few people on this site have it working, just not working for me for some reason :S haha i tried changing if($_POST['user']){ $user=$_POST['user']; to if(!empty($_POST['user'])){ $user = empty($_POST['user']); and the undefined error for user went away, should i do this for each of the variables? or is that coding wrong ! [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048435 Share on other sites More sharing options...
soupy127 Posted April 26, 2010 Author Share Posted April 26, 2010 here is also the database code to set up the table, if anyone wants to try it for themselves ! [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048436 Share on other sites More sharing options...
Ken2k7 Posted April 26, 2010 Share Posted April 26, 2010 soupy127, notices aren't really big errors. Your code will still work fine though. You should always check if a variable isset as thorpe pointed out. It appears that this is solved. Are you still having complications? FYI: $PHP_SELF is deprecated. Either use $_SERVER['PHP_SELF'] or omit it if you're submitting data to the same file. Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1048823 Share on other sites More sharing options...
soupy127 Posted April 27, 2010 Author Share Posted April 27, 2010 Thanks for your reply Ken2k7 ! Im going to change of the variables tonight to see if it works and use that code you provided for the php self, and i will report back what happens ! hopefully it will work ok. thanks very much again ! Quote Link to comment https://forums.phpfreaks.com/topic/199389-please-help-with-connect-funtion/#findComment-1049222 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.