Hello!
I have a large database of barcode-->price as follows:
#----------------------------
Table structure for classics
#----------------------------
drop table if exists classics;
create table classics (
barcode varchar(8) not null auto_increment,
price varchar(6) not null,
primary key (barcode))
type=MyISAM;
#----------------------------
Records for table classics
#----------------------------
insert into classics values (1, 123456-2, 33.90) ;
insert into classics values (2, 123457-2, 34.90) ;
insert into classics values (3, 123458-2, 35.90) ;
insert into classics values (4, 123459-2, 36.90) ; etc
In a form, peple write down the barcode, and I'd like to send that form field to the database, and display in return the barcode and its price, and the total of their whole selection.
and I really don't know how.....😕
Anyone???