Re: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Mike Brandonisio
Hi, I see, you are correct. Sincerely, Mike -- Mike Brandonisio *    IT Planning & Support Tech One Illustration    *    Database Applications tel (630) 759-9283   *    e-Commerce [EMAIL PROTECTED]  *    www.techoneillustration.com On Apr 19, 2006, at 8:1

Re: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Pete
In message <[EMAIL PROTECTED]>, Mike Brandonisio <[EMAIL PROTECTED]> writes >Hi, > >You have a double ; in your $check at the end. > >  //check if the username is taken >   $check = "SELECT id from registration WHERE username = >   '".$POST ['username']."';"; > >I think it should be: > >   '

RE: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Tom Price
#x27;$address', '$city', '$state', '$country','$phone')"; Sincerely, Greg -- Gregory D. Fox * Liberty Web Hosting & Design Toll Free: 866-269-0676 * Fax: 401-828-7057 ~~~~~~~~~~~~~~~~~ |    Providing Internet Solutions Since 1996  | ~~

Re: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Pete
In message <[EMAIL PROTECTED]>, Olunkwa Ikechukwu <[EMAIL PROTECTED]> writes >Hello Everyone >  It's me Iyke >  I need your help on a script, its supposed to collect user registration and >store in mysql database. >  but I get >  Parse error: parse error, unexpected T_STRING in >/home/public_

Re: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Mike Brandonisio
Hi, You have a double ; in your $check at the end.   //check if the username is taken    $check = "SELECT id from registration WHERE username =    '".$POST ['username']."';"; I think it should be:   '".$POST ['username']."'"; Sincerely, Mike --  Mike Brandonisio *    IT

RE: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Gregory Fox
$address', '$city', '$state', '$country','$phone')"; Sincerely, Greg -- Gregory D. Fox * Liberty Web Hosting & Design Toll Free: 866-269-0676 * Fax: 401-828-7057 ~~~~~~~~~ | Providing Internet Solutions Since 1996 |

Re: [php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Asif Ali
hi... i hope the problem is in this line $qry = mysql_query ($check) or die ("Could not match data because '.mysql_error() ); You are passing ur custom message and started with double codes and closed with single code. I hope ur problem will be solved. Thanks Mo

[php-list] Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30

2006-04-19 Thread Olunkwa Ikechukwu
Hello Everyone It's me Iyke I need your help on a script, its supposed to collect user registration and store in mysql database. but I get Parse error: parse error, unexpected T_STRING in /home/public_html/register.php on line 30 Here's the code ";