Please Help registration problem

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
hashie
Forum Newbie
Posts: 2
Joined: Sat Jun 07, 2008 6:50 pm

Please Help registration problem

Post by hashie »

When I try to register on my site i get the error on line 65 thing

this is line 65

Code: Select all

$username = uc($username);
$password = uc($password);
$cpassword = uc($cpassword);
$email = limpiar($email);
$cemail = limpiar($cemail);
$pemail = limpiar($pemail);
$country = limpiar($country);
I recieve this ERROR
Fatal error: Call to undefined function uc() in /home2/bestbuxn/public_html/boldbux/register.php on line 65


Can some one help please its very important :banghead:
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Re: Please Help registration problem

Post by Christopher »

Try strtoupper().
(#10850)
Post Reply