I have created a table in the mysql db, using phpmyadmin with the following
statement:

create table books
( isbn char(13) not null,author char(30),title(60),price float(4,2),primary
key(isbn));

which works fine and creates the table i need the problem comes when i try
to insert some values into the price column using the phpmyadmin form, if
for example i try to enter the price 34.99 it will only allow me to enter
34.9, and then when i go to the browse feature it shows the value as 34.90
any ideas on what's going wrong???
any help would be much apprecited.
thanks


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to