Allora sul mio pc è installat easy php (che oltretutto non ho mai usato perchè non programmo in php...), l'installazione di mysql è avvenuta dopo!

---

Adesso il problema è questo!

mysql> create table telefono (
-> idtelefono int not null auto_increment primary key,
-> telefono int(20));
Query OK, 0 rows affected (0.01 sec)

mysql> insert into telefono ('059');
ERROR 1064: You have an error in your SQL syntax near ''059')' at line 1
mysql> insert into telefono value ('059');
ERROR 1064: You have an error in your SQL syntax near 'value ('059')' at line 1
mysql> insert into telefono value ('1','059');
ERROR 1064: You have an error in your SQL syntax near 'value ('1','059')' at lin
e 1
mysql>