Please help! There is a parse error in line10:

<?php

// file: "root/reg/add_2.php", updated: 08/25/01

$connection=@mysql_connect("localhost","afrodriguez","xxx") or die ("No 
connection!");

$db=@mysql_select_db("sbwresearch",$connection) or die ("No database!");

$qry_1="select * from cust_info where username=\"$username\"";

$result=@mysql_query($qry_1,$connection) or die ("No query # 1!");

$row_1=@mysql_affected_rows();

if ($row_1==0)

{

   $qry_2="insert into cust_info (username,password,mother) values 
("$username","$password","$mother") or die (No query #2!)";

   $result=@mysql_query($qry_2,$connection);

   @mysql_free_result($result);

   @mysql_close($connection);

   echo "

   <html>

   etc.

Thank you!


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to