hash1 Posted June 24, 2008 Share Posted June 24, 2008 When I try to register on my site i get the error on line 65 thing this is line 65 $username = uc($username); $password = uc($password); $cpassword = uc($cpassword); $email = limpiar($email); $cemail = limpiar($cemail); $pemail = limpiar($pemail); $country = limpiar($country); Can some one help please its very important ??? Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/ Share on other sites More sharing options...
DarkWater Posted June 24, 2008 Share Posted June 24, 2008 WHICH error do you get? *Sighs* Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573657 Share on other sites More sharing options...
hash1 Posted June 24, 2008 Author Share Posted June 24, 2008 WHICH error do you get? *Sighs* Fatal error: Call to undefined function uc() in /home2/bestbuxn/public_html/boldbux/register.php on line 65 This one sry im a noobie :-\ Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573658 Share on other sites More sharing options...
DarkWater Posted June 24, 2008 Share Posted June 24, 2008 Okay, it tells you the error.....uc() isn't a function. What are you trying to do on that line? Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573659 Share on other sites More sharing options...
hash1 Posted June 24, 2008 Author Share Posted June 24, 2008 I suppose send info to db or something Im not sure honestly its when I try to register to my site so that im a member Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573660 Share on other sites More sharing options...
valaris Posted June 24, 2008 Share Posted June 24, 2008 You need to define the uc function or include the file that defines it. Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573669 Share on other sites More sharing options...
hash1 Posted June 24, 2008 Author Share Posted June 24, 2008 Could you tell me how to do this please some thing said to look in php.ini to enable it but i didnt find anything like that in the php.ini Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573670 Share on other sites More sharing options...
valaris Posted June 24, 2008 Share Posted June 24, 2008 uc is a user defined function...If its your own script then you need to define it and have it do something, if you are using somebody elses then you need to make sure you have all your pathing right. Link to comment https://forums.phpfreaks.com/topic/111748-please-help-registration-problem/#findComment-573673 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.