bonjour a vous tous,
je suis toute nouvelle sur ce forum je viens de voir un tuto sur http://actionscript-toolbox.com/samplemx_php.php
et on me demande de faire une base de donnees avec ses infos mais je n'y arrive pas;
qq'un pourrait me montrer comment faire .
Merci Murielle
------------------------------------------------
The first thing to do in any database application is define the structure of the data. In this case, I created a new MySQL table with these fields:
* contact ID, smallint, primary key, auto_increment
* lastName, tinytext
* firstName, tinytext
* phone, tinytext
* email, tinytext
* picFile, tinytext
* caption, tinytext
and then populated the field manually with statements like these:
insert into contacts
values (NULL, 'Anderson', 'Lois', '301-424-5555',
'lois@yahoo.com', 'lois.jpg', 'Lois, 2001');
-----------------------------------------------------------------