IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

 PHP Discussion :

Jeu de tests


Sujet :

PHP

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Mai 2010
    Messages
    57
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2010
    Messages : 57
    Par défaut Jeu de tests
    Bonjour,
    je suis débutant en symfony et j'essaye de creer une application, mais lors de l'insertition des jeux de test le message suivant apparait et j'avoue que je n'arrive pas à savoir d'où vient ce "0", vu que je n'ai aucun 0 dans mon fichiers, comment résoudre ce problème ?

    Unknown record property / related component "0" on "Eleve"

    Merci

  2. #2
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : DPO
    Secteur : Distribution

    Informations forums :
    Inscription : Septembre 2005
    Messages : 4 954
    Par défaut
    C'est une maladie aujourd'hui... tu es bien le cinquième avec des problèmes de fixature...

    Tu peux donner ton shema et ton fixature ?

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Mai 2010
    Messages
    57
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2010
    Messages : 57
    Par défaut
    Merci de ton aide, voila mon schéma :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    Accompagner:
      connection: doctrine
      tableName: accompagner
      columns:
        idp:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Adresse:
      connection: doctrine
      tableName: adresse
      columns:
        idadr:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nomvoieadr:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        codepostaladr:
          type: string(6)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Avoir:
      connection: doctrine
      tableName: avoir
      columns:
        idp:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        idtel:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Creer:
      connection: doctrine
      tableName: creer
      columns:
        idu:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Eleve:
      connection: doctrine
      tableName: eleve
      columns:
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nome:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        prenome:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        sexee:
          type: string(1)
          fixed: true
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        datenaissancee:
          type: date(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        paysnaissancee:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        datearrivefre:
          type: date(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        nbanneesscolariseprimairepaysoriginee:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        nbanneesscolarisesecondairepaysoriginee:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        scolarisationpaysoriginee:
          type: integer(1)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        anneedescolarisationfrancee:
          type: date(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        francophonee:
          type: integer(1)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        rupturescolairee:
          type: integer(1)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        redoublemente:
          type: integer(1)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        emaile:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        idpays:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        coderneetab:
          type: string(8)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        coderneetab_origine:
          type: string(8)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        idl_maternelle:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        idl_scolarisation:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        idl_parler:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        idl_lv1:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        idl_lv2:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Etablissement:
      connection: doctrine
      tableName: etablissement
      columns:
        coderneetab:
          type: string(8)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        nometab:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Evaluation:
      connection: doctrine
      tableName: evaluation
      columns:
        idtypeeval:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        natureeval:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        libelleeval:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Gerer:
      connection: doctrine
      tableName: gerer
      columns:
        ids:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Item:
      connection: doctrine
      tableName: item
      columns:
        iditem:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        libelleitem:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        ideval:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          default: ''
          notnull: true
          autoincrement: false
        idtypeeval:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          default: ''
          notnull: true
          autoincrement: false
    Langue:
      connection: doctrine
      tableName: langue
      columns:
        idl:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        libellel:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Modifier:
      connection: doctrine
      tableName: modifier
      columns:
        idu:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Nationnalite:
      connection: doctrine
      tableName: nationnalite
      columns:
        idn:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        libellen:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Occuper:
      connection: doctrine
      tableName: occuper
      columns:
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        idadr:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Parler:
      connection: doctrine
      tableName: parler
      columns:
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        idl:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Passer:
      connection: doctrine
      tableName: passer
      columns:
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        iditem:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Pays:
      connection: doctrine
      tableName: pays
      columns:
        idpays:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nompays:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Personne:
      connection: doctrine
      tableName: personne
      columns:
        idp:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nomp:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        prenomp:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Posseder:
      connection: doctrine
      tableName: posseder
      columns:
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        idn:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    ProposerAvis:
      connection: doctrine
      tableName: proposer_avis
      columns:
        idu:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        dateavis:
          type: date(25)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        descionavis:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Representer:
      connection: doctrine
      tableName: representer
      columns:
        ide:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        idp:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Situer:
      connection: doctrine
      tableName: situer
      columns:
        idadr:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        codeinseev:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
    Social:
      connection: doctrine
      tableName: social
      columns:
        ids:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        noms:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        faxs:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        contacts:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        tels:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Telephone:
      connection: doctrine
      tableName: telephone
      columns:
        idtel:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        numtel:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    TypeEvaluation:
      connection: doctrine
      tableName: type_evaluation
      columns:
        ideval:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        notemaxtypeeval:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        listevaleurtypeeval:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Utilisateur:
      connection: doctrine
      tableName: utilisateur
      columns:
        idu:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: true
        nomu:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        prenomu:
          type: string(150)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        serviceu:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        roleu:
          type: string(50)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
        passwordu:
          type: string(20)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    Ville:
      connection: doctrine
      tableName: ville
      columns:
        codeinseev:
          type: integer(4)
          fixed: false
          unsigned: false
          primary: true
          autoincrement: false
        nomv:
          type: string(200)
          fixed: false
          unsigned: false
          primary: false
          notnull: false
          autoincrement: false
    et voila mon fixature :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    # data/fixtures/eleves.yml
    Eleve:
        nomE:                                     toto
        prenomE:                                  pierre
        sexeE:                                    true
        dateNaissanceE:                           '2010-10-10'
        paysNaissanceE:                           france
        dateArriveFrE:                            '2009-20-12'
        nbAnneesScolarisePrimairePaysOrigineE:    '5'
        nbAnneesScolariseSecondairePaysOrigineyE: '2'
        scolarisationPaysOrigineE:                true
        anneeDeScolarisationFranceE:              '2011-2-10'
        francophoneE:                             true
        ruptureScolaireE:                         false
        redoublementE:                            false
        emailE:                                   toto@example.com

  4. #4
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : DPO
    Secteur : Distribution

    Informations forums :
    Inscription : Septembre 2005
    Messages : 4 954
    Par défaut
    Je propose de d'abord fixer le shema avant de passer aux fixatures.

    J'ai jeté un oeil, en général je le donne "a ma façon", mais le tiens est un peu long et je dois bien le dire trop obscure pour que je puisse le faire rapidement.

    Dans, je te donne une liste de conseils à suivre, tu rectifies ton shema.yml et on en reparle derrière.

    Les conseils :
    • ne pas mettre les options par défaut, notamment :
      • fixed: false
      • unsigned: false
      • primary: false
      • notnull: false
      • autoincrement: false
      • connection: doctrine (si tu n'as qu'une connexion ce qui semble être le cas)
      • tableName: xxxx (si xxxx et le nom de l'objet)
    • Si la description du champ est juste le type, on le mettre sur une ligne genre : "nom_du_champ: string(25)"
    • Laisser Doctrine créer la clef primaire. Une clef primaire avec doctrine s'appelle "Id" c'est un integer(8) auto-incrémenté. Il le rajoute si tu ne met pas de clef primaire, laisse le faire
    • Éviter les clefs significative (num insée ville) il faut mieux avoir une clef non significative "Id" et l'information à côté.
    • Les champs de liaison sont nomDeLObjet_id et vu la remarque si dessus de type integer. Un champ qui relie une table x à la table client sera donc "client_id".
    • Y aller molo sur les "notnull: true" c'est beau, mais souvent lourd à gérer dans le temps, ne le faire que si c'est structurellement justifier.
    • Ne jamais avoir de nom de table et ou de champ qui finissent pas un s (dur dur je sais).
    • Pour les nom de champ composé séparer les "mots" par "_"
    • Pour les noms d'objet (entité, tables) éviter les nom composer, si non les mettre en mode chamel (BonjourJeSuisChamel)


    En plus de ces remarques. Il n'y a aucune description des liaisons entre les tables, il faut les faire.

    Pour la connexion et la sécurité, il y a un plugin très pratique sfDoctrineGuardPlugin qui le gère bien et remplace avantageusement une table Utilisateur.

    Je propose que tu rectifies ton schéma avec les conseils ci-dessus et remettes la nouvelle version en ligne. On verra alors pour les liaisons.

  5. #5
    Membre averti
    Profil pro
    Inscrit en
    Mai 2010
    Messages
    57
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2010
    Messages : 57
    Par défaut
    Ok merci de ton aide je vais essayer de faire mon schéma à la main parceque là je perds trop de temps, mais mon problème est que la base de données est assez grosse, dès que j'ai fini je la poste

  6. #6
    Expert confirmé
    Avatar de Michel Rotta
    Homme Profil pro
    DPO
    Inscrit en
    Septembre 2005
    Messages
    4 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 62
    Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : DPO
    Secteur : Distribution

    Informations forums :
    Inscription : Septembre 2005
    Messages : 4 954
    Par défaut
    Citation Envoyé par lemano Voir le message
    ... mais mon problème est que la base de données est assez grosse
    Raison de plus pour avoir un shéma le plus propre possible

Discussions similaires

  1. Création d'un jeu de test sous MVS
    Par Ullysse dans le forum z/OS
    Réponses: 2
    Dernier message: 23/04/2014, 19h56
  2. [Android] [Jeu] Blind Test - Séries TV
    Par fijougiok dans le forum Mon application mobile
    Réponses: 1
    Dernier message: 15/01/2014, 07h36
  3. [Android] [Jeu] Blind Test - Dessin Animé
    Par fijougiok dans le forum Mon application mobile
    Réponses: 1
    Dernier message: 14/01/2014, 23h22
  4. Problème pour le jeu de tests
    Par bolltt dans le forum Macros et VBA Excel
    Réponses: 9
    Dernier message: 26/01/2008, 23h05
  5. Test dans une boîte de jeu video
    Par Riki dans le forum Développement 2D, 3D et Jeux
    Réponses: 38
    Dernier message: 03/05/2007, 00h09

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo