"Harlequin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I've managed with a lot of help to get the PHP pages to echo the results
of
> what a user put into a "User Registration" page. However, I'm still having
> trouble getting the code right to actually commit the data on the
> "Registered" page that the "Register" page points to.
>
> Can anyone help...?
>
> Code attached...

You don't call mysql_query() anywhere in your code! Add this line below the
line where you set $sql:
mysql_query($sql);

And you don't need quotes here:
mysql_select_db ("$dbase"); => mysql_select_db($dbase);

Regards,
Torsten Roehr

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to