Re: [PHP-DB] Help ! MySQL Problem

2001-03-08 Thread Brinzoi Constantin Aurelian
On Thu, 8 Mar 2001, Rosen wrote: > Hi, > I'm using MySQL database and I try: > " > insert into roubr('id','pos','name') values ( select id,pos,name from > requestroubr) > > " Try this: insert into roubr(id,pos,name) values select id,pos,name from requestroubr I hope this will work ! Best rega

[PHP-DB] Re: [PHP] Help ! MySQL Problem

2001-03-08 Thread Brinzoi Constantin Aurelian
Sorry Rosen ! I mean: insert into roubr(id, pos, name) select id,pos,name from requestroubr This will definitively work ! Constantin Brinzoi Dept. Sondaje IRECSON -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

[PHP-DB] Variable passing

2001-04-24 Thread Brinzoi Constantin Aurelian
Hi ! Here is the problem: I got 8 pages, shown one after another. Each have 2 buttons (one for continue and one for abort). When I click to "Continue" I go to the next page. On the last page I have to submit ALL variables from these 8 pages to the database. My test shown that only the variables

Re: [PHP-DB] How to select [please HELP]

2001-04-25 Thread Brinzoi Constantin Aurelian
On Wed, 25 Apr 2001, David Tandberg-Johansen wrote: > Hello! > > I am trying to select from a table where users add stuf. > > First I do: > > SELECT recordid,uid ,info FROM userstuff WHERE recordid LIKE '$recordid' > > Then I want to check if the user has more records in the table, based on t