1

Is it something in MySQL or in the programming...cant figure it out!!

Mike
  • 11
  • 1

1 Answers1

1

in the mysql table the Quantity is set to an "int" data type. you can alter the table and change it to a "varchar" data type and that would allow you to have letters in there as well.

try something like this:

ALTER TABLE t1 CHANGE quantity quantity VARCHAR(255);

Wrenbjor
  • 157
  • 5