in reply to Inserting data into MS Access databse.........

> $sql = "INSERT INTO surya VALUES ($formemail,$formpass)";

Just by eyeballing your code your SQL looks abit weird.
what you want is:
insert into <table> (<column>,<column2>) values (<value>,<value2>)

Also, It looks like you might have too many tables, or you might want to be updating instead of inserting.
good luck!

Replies are listed 'Best First'.
Re: Re: Inserting data into MS Access databse.........
by merlyn (Sage) on Dec 17, 2000 at 11:26 UTC