Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > JavaScript > Bibliothèques & Frameworks > jQuery
jQuery Forum d'entraide sur le framework jQuery. Avant de poster : Tutoriels jQuery, FAQ jQuery, Tous les tutoriels JavaScript, Toutes les FAQ JavaScript
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 08/01/2011, 22h44   #1
Invité régulier
 
Inscription : novembre 2010
Messages : 36
Détails du profil
Informations forums :
Inscription : novembre 2010
Messages : 36
Points : 8
Points : 8
Par défaut Symfony dans (google chrome,firefox,IE)

Bonjour,

J'ai un problème dans l'affichage d'une liste déroulante dans firefox et IE,par contre sous chrome tout marche nikel.

-> Dans firefox : la liste s'affiche mais en ajoutant un petit </br> "_selectDepartement.php" sinon ça m'affiche tous les département d'une région concernée dans une seule ligne, et le grand problème c'est que j'arrive pas à selectionner un élément de la liste.

-> Dans IE : La 2ème liste n'affiche rien.Ca m'étonne pas d'ailleurs j'ai tout les boutons qui sont mélanger avec IE.

Donc j'ai un formulaire pour poster une annonce j'utilise AJAX pour filtrer les départements en fonction de la région comme ça :
Sachant que la route url_for('@ajax_departement') mène vers le template php qui permet de selectionner le departement.

Code :
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
<?php use_stylesheets_for_form($form) ?>
 
<?php use_javascript('jquery-1.4.4.min.js') ?> 
<?php use_javascript('/sfJqueryReloadedPlugin/js/jquery-1.3.2.min.js'); ?>
 
<script type="text/javascript">
$(document).ready(function(){
  $("#annonce_Departement_id").hide();
 
  $("#annonce_Region_id").change( function() {
     $("#annonce_Departement_id").show();
	$.post('<?php echo url_for('@ajax_departement'); ?>', { region: $(this).val() },
    	function(data){
      $("#annonce_Departement_id").html(data);
    });
  });
});
</script>
 
<?php use_javascripts_for_form($form) ?>
<?php echo form_tag_for($form, '@ads') ?>  
  <table id="job_form">
    <tfoot>
      <tr>
        <td colspan="2">
          <input type="submit" value="Preview your ad" />
        </td>
      </tr>
    </tfoot>
    <tbody>
      <?php echo $form['Categorie_id']->renderRow() ?>
 
      <?php echo $form['Region_id']->renderRow() ?>
	  <?php echo $form['Departement_id']->renderRow() ?> 
 
	  <?php //echo $form['Region']['Name']->renderRow() ?> <?php //bug ?>
 
	  <?php echo $form['CodePostal']->renderRow() ?>
	  <?php echo $form['Ville']->renderRow() ?>
	  <?php echo $form['TypeAnnonce']->renderRow() ?>
	  <?php echo $form['TitreAnnonce']->renderRow() ?>
	  <?php echo $form['TexteAnnonce']->renderRow() ?>
	  <?php echo $form['Prix']->renderRow() ?>
	  <?php echo $form['PhotoPrincipale']->renderRow(array('width' => 100)) ?>
	  <?php echo $form->renderHiddenFields() ?>
 
	  <?php foreach ($form['newPhotos'] as $photo): ?>
      <?php echo $photo['caption']->renderRow() ?>
      <?php echo $photo['filename']->renderRow() ?>
      <?php endforeach; ?>
	  <?php foreach ($form['Photos'] as $photo): ?>
	  <?php echo $photo['caption']->renderRow() ?>
	  <?php echo $photo['filename']->renderRow(array('width' => 100)) ?>
	  <?php endforeach; ?>
 
    </tbody>
  </table>
</form>
_selectDepartement.php :

Code :
1
2
3
4
5
6
7
8
9
 
 
<?php foreach($region->getDepartements() as $departement): ?>
 
<?php //echo $departement->getName() ?>
<br/>
<option value='<?php echo $departement->getId(); ?>'> <?php echo $departement->getName(); ?></option>
 
<?php endforeach; ?>
Merci de me proposer une solution qui peut au moins être fonctionnel pour Firefox.
fastone650 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 09/01/2011, 14h27   #2
Modérateur
 
Avatar de Michel Rotta
 
Homme Michel Rotta
Responsable d'exploitation informatique
Inscription : septembre 2005
Messages : 4 913
Détails du profil
Informations personnelles :
Nom : Homme Michel Rotta
Âge : 49
Localisation : France, Bouches du Rhône (Provence Alpes Côte d'Azur)

Informations professionnelles :
Activité : Responsable d'exploitation informatique
Secteur : Distribution

Informations forums :
Inscription : septembre 2005
Messages : 4 913
Points : 7 505
Points : 7 505
Quel est le html généré ?

Ta question serait peut-être mieux traitée dans le forum sur jquery, te la déplaces je ?
__________________
Si tu donnes un poisson à un homme, il mangera un jour. Si tu lui apprends à pêcher, il mangera toujours (Lao Tseu).
  • Pensez à valoriser les réponses pertinantes, cliquez sur le bouton vert +1 pour indiquer votre accord avec la solution proposée.
  • Pensez à utiliser la balise [code] pour afficher du code, elle est cachée sous le bouton [#] dans l'éditeur.
  • Une discussion est terminée ? Alors le bouton est votre ami !
Michel Rotta est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 09/01/2011, 18h39   #3
Invité régulier
 
Inscription : novembre 2010
Messages : 36
Détails du profil
Informations forums :
Inscription : novembre 2010
Messages : 36
Points : 8
Points : 8
Si tu penses que je serai mieux répondu oui .
Voilà mon le code source généré :

Code :
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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
 <!-- apps/frontend/templates/layout.php -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
 
 
      <script type="text/javascript" src="/js/jquery-1.4.4.js"></script>
<script type="text/javascript" src="/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="/js/ajax_reg.js"></script>
<script type="text/javascript" src="/sfJqueryReloadedPlugin/js/jquery-1.3.2.min.js"></script>
 
<script type="text/javascript" src="/js/search.js"></script>
 
   <link rel="stylesheet" type="text/css" media="screen" href="/css/main.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/css/job.css" />
 
 
    <title>AdWebsite - Your best Ad board</title>
 
 
    <link rel="shortcut icon" href="/favicon.ico" />
	<link rel="alternate" type="application/atom+xml" title="Latest ads"
  href="http://www.addad.com.localhost/frontend_dev.php/ads.atom" />
 
	  <style type="text/css">#sfWebDebug {   padding: 0;   margin: 0;   font-family: Arial, sans-serif;   font-size: 12px;   color: #333;   text-align: left;   line-height: 12px; }  #sfWebDebug a, #sfWebDebug a:hover {   text-decoration: none;   border: none;   background-color: transparent;   color: #000; }  #sfWebDebug img {   float: none;   margin: 0;   border: 0;   display: inline; }  #sfWebDebugBar {   position: absolute;   margin: 0;   padding: 1px 0;   right: 0px;   top: 0px;   opacity: 0.80;   filter: alpha(opacity:80);   z-index: 10000;   white-space: nowrap;   background-color: #ddd; }  #sfWebDebugBar[id] {   position: fixed; }  #sfWebDebugBar img {   vertical-align: middle; }  #sfWebDebugBar .sfWebDebugMenu {   padding: 5px;   padding-left: 0;   display: inline;   margin: 0; }  #sfWebDebugBar .sfWebDebugMenu li {   display: inline;   list-style: none;   margin: 0;   padding: 0 6px; }  #sfWebDebugBar .sfWebDebugMenu li.last {   margin: 0;   padding: 0;   border: 0; }  #sfWebDebugDatabaseDetails li {   margin: 0;   margin-left: 30px;   padding: 5px 0; }  #sfWebDebugShortMessages li {   margin-bottom: 10px;   padding: 5px;   background-color: #ddd; }  #sfWebDebugShortMessages li {   list-style: none; }  #sfWebDebugDetails {   margin-right: 7px; }  #sfWebDebug pre {   line-height: 1.3;   margin-bottom: 10px; }  #sfWebDebug h1 {   font-size: 16px;   font-weight: bold;   margin: 20px 0;   padding: 0;   border: 0px;   background-color: #eee; }  #sfWebDebug h2 {   font-size: 14px;   font-weight: bold;   margin: 10px 0;   padding: 0;   border: 0px;   background: none; }  #sfWebDebug h3 {   font-size: 12px;   font-weight: bold;   margin: 10px 0;   padding: 0;   border: 0px;   background: none; }  #sfWebDebug .sfWebDebugTop {   position: absolute;   left: 0px;   top: 0px;   width: 98%;   padding: 0 1%;   margin: 0;   z-index: 9999;   background-color: #efefef;   border-bottom: 1px solid #aaa; }  #sfWebDebugLog {   margin: 0;   padding: 3px;   font-size: 11px; }  #sfWebDebugLogMenu {   margin-bottom: 5px; }  #sfWebDebugLogMenu li {   display: inline;   list-style: none;   margin: 0;   padding: 0 5px;   border-right: 1px solid #aaa; }  #sfWebDebugConfigSummary {   display: inline;   padding: 5px;   background-color: #ddd;   border: 1px solid #aaa;   margin: 20px 0; }  #sfWebDebugConfigSummary li {   list-style: none;   display: inline;   margin: 0;   padding: 0 5px; }  #sfWebDebugConfigSummary li.last {   border: 0; }  .sfWebDebugInfo, .sfWebDebugInfo td {   background-color: #ddd; }  .sfWebDebugWarning, .sfWebDebugWarning td {   background-color: orange !important; }  .sfWebDebugError, .sfWebDebugError td {   background-color: #f99 !important; }  .sfWebDebugLogNumber {   width: 1%; }  .sfWebDebugLogType {   width: 1%;   white-space: nowrap; }  .sfWebDebugLogType, #sfWebDebug .sfWebDebugLogType a {   color: darkgreen; }  #sfWebDebug .sfWebDebugLogType a:hover {   text-decoration: underline; }  .sfWebDebugLogInfo {   color: blue; }  .ison {   color: #3f3;   margin-right: 5px; }  .isoff {   color: #f33;   margin-right: 5px;   text-decoration: line-through; }  .sfWebDebugLogs {   padding: 0;   margin: 0;   border: 1px solid #999;   font-family: Arial;   font-size: 11px; }  .sfWebDebugLogs tr {   padding: 0;   margin: 0;   border: 0; }  .sfWebDebugLogs td {   margin: 0;   border: 0;   padding: 1px 3px;   vertical-align: top; }  .sfWebDebugLogs th {   margin: 0;   border: 0;   padding: 3px 5px;   vertical-align: top;   background-color: #999;   color: #eee;   white-space: nowrap; }  .sfWebDebugDebugInfo {   color: #999;   font-size: 11px;   margin: 5px 0 5px 10px;   padding: 2px 0 2px 5px;   border-left: 1px solid #aaa;   line-height: 1.25em; }  .sfWebDebugDebugInfo .sfWebDebugLogInfo, .sfWebDebugDebugInfo a.sfWebDebugFileLink {   color: #333 !important; }  .sfWebDebugCache {   padding: 0;   margin: 0;   font-family: Arial;   position: absolute;   overflow: hidden;   z-index: 995;   font-size: 9px;   padding: 2px;   filter:alpha(opacity=85);   -moz-opacity:0.85;   opacity: 0.85; }  #sfWebDebugSymfonyVersion {   margin-left: 0;   padding: 1px 4px;   background-color: #666;   color: #fff; }  #sfWebDebugviewDetails ul {   padding-left: 2em;   margin: .5em 0;   list-style: none; }  #sfWebDebugviewDetails li {   margin-bottom: .5em; }  #sfWebDebug .sfWebDebugDataType, #sfWebDebug .sfWebDebugDataType a {   color: #666;   font-style: italic; }  #sfWebDebug .sfWebDebugDataType a:hover {   text-decoration: underline; }  #sfWebDebugDatabaseLogs {   margin-bottom: 10px; }  #sfWebDebugDatabaseLogs ol {   margin: 0;   padding: 0;   margin-left: 20px;   list-style: number; }  #sfWebDebugDatabaseLogs li {   padding: 6px; }  #sfWebDebugDatabaseLogs li:nth-child(odd) {   background-color: #CCC; }  .sfWebDebugDatabaseQuery {   margin-bottom: .5em;   margin-top: 0; }  .sfWebDebugDatabaseLogInfo {   color: #666;   font-size: 11px; }  .sfWebDebugDatabaseQuery .sfWebDebugLogInfo {   color: #909;   font-weight: bold; }  .sfWebDebugHighlight {   background: #FFC; }</style></head>
 
  <body>
    <div id="container">
      <div id="header">
        <div class="content">
          <h1><a href="/frontend_dev.php/">
            <img src="/images/logo.jpg" alt="Jobeet Job Board" />
 
          </a></h1>
 
 
          <div id="sub_header">
		  <li class="bouton5"><a href="/frontend_dev.php/"><h2>Ask for people</h2></a></li>
 
		  <li class="bouton_gauche"><a href="/frontend_dev.php/ads/new.html"><h2>ADDURADD</h2></a></li>
		  <li class="bouton2"><a href="/frontend_dev.php/fr/userAds_show.html"><h2>MYADS</h2></a></li>
		   		  		  <li class="bouton12"><a href="/frontend_dev.php/fr/editprofile.html"><h2>REGISTER</h2></a></li>
		   <li class="bouton6"><a href="/frontend_dev.php/fr/disconnect.html"><h2>REGISTER</h2></a></li>
		   		 <!--
			<div class="post">
              <h2>Ask for people</h2>
              <div>
                <a href="">  </a>
 
              </div>
 
            </div>-->
 
 
            <div class="search">
              <h2>Ask for an Ad</h2>
 
 
<form action="/frontend_dev.php/search" method="get">
  <input type="text" name="query" value="" id="search_keywords" />
  <input type="submit" value="search" />
   <img id="loader" src="/images/loader.gif" style="vertical-align: middle; display: none" />
  <div class="help">
    Enter some keywords (city,Ad tittle, ...)
  </div>
</form>
            </div>
          </div>
 
        </div>
      </div>
 
      <div id="content">
 
 
        <div class="content">
 
<h1>New Ad</h1>
 
 
 
 
<script type="text/javascript">
$(document).ready(function(){
  $("#annonce_Departement_id").hide();
 
  $("#annonce_Region_id").change( function() {
     $("#annonce_Departement_id").show();
	$.post('/frontend_dev.php/ads/departement', { region: $(this).val() },
    	function(data){
      $("#annonce_Departement_id").html(data);
    });
  });
});
</script>
 
<form method="post" action="/frontend_dev.php/ads.html" enctype="multipart/form-data">  
  <table id="job_form">
    <tfoot>
      <tr>
        <td colspan="2">
          <input type="submit" value="Preview your ad" />
        </td>
      </tr>
    </tfoot>
    <tbody>
 
      <tr>
  <th><label for="annonce_Categorie_id">Category</label></th>
  <td><select name="annonce[Categorie_id]" id="annonce_Categorie_id">
<option value="21">Appartement</option>
<option value="22">Voitures</option>
<option value="23">Telephonie</option>
<option value="24">Livres</option>
</select></td>
</tr>
 
 
      <tr>
  <th><label for="annonce_Region_id">Region</label></th>
  <td><select name="annonce[Region_id]" id="annonce_Region_id">
<option value="1">Alsace</option>
<option value="2">Aquitaine</option>
<option value="3">Auvergne</option>
<option value="4">Basse Normandie</option>
<option value="5">Bourgogne</option>
 
<option value="6">Bretagne</option>
<option value="7">Centre</option>
<option value="8">Champagne Ardenne</option>
<option value="9">Corse</option>
<option value="10">Franche Comte</option>
<option value="11">Haute Normandie</option>
<option value="12">Ile de France</option>
<option value="13">Languedoc Roussillon</option>
<option value="14">Limousin</option>
 
<option value="15">Lorraine</option>
<option value="16">Midi-Pyrénées</option>
<option value="17">Nord Pas de Calais</option>
<option value="19">Pays de la Loire</option>
<option value="20">Picardie</option>
<option value="21">Poitou Charente</option>
<option value="18">Provence Alpes Côte d&#039;Azur</option>
<option value="22">Rhone Alpes</option>
 
</select></td>
</tr>
	  <tr>
  <th><label for="annonce_Departement_id">Departement</label></th>
  <td><select name="annonce[Departement_id]" id="annonce_Departement_id">
<option value="1">Ain</option>
<option value="2">Aisne</option>
<option value="3">Allier</option>
<option value="4">Alpes de haute provence</option>
 
<option value="5">Hautes alpes</option>
<option value="6">Alpes maritimes</option>
<option value="7">Ardèche</option>
<option value="8">Ardennes</option>
<option value="9">Ariège</option>
<option value="10">Aube</option>
<option value="11">Aude</option>
<option value="12">Aveyron</option>
<option value="13">Bouches du rhône</option>
 
<option value="14">Calvados</option>
<option value="15">Cantal</option>
<option value="16">Charente</option>
<option value="17">Charente maritime</option>
<option value="18">Cher</option>
<option value="19">Corrèze</option>
<option value="21">Côte d&#039;or</option>
<option value="22">Côtes d&#039;Armor</option>
 
<option value="23">Creuse</option>
<option value="24">Dordogne</option>
<option value="25">Doubs</option>
<option value="26">Drôme</option>
<option value="27">Eure</option>
<option value="28">Eure et Loir</option>
<option value="29">Finistère</option>
<option value="30">Gard</option>
<option value="31">Haute garonne</option>
 
<option value="32">Gers</option>
<option value="33">Gironde</option>
<option value="34">Hérault</option>
<option value="35">Ile et Vilaine</option>
<option value="36">Indre</option>
<option value="37">Indre et Loire</option>
<option value="38">Isère</option>
<option value="39">Jura</option>
<option value="40">Landes</option>
 
<option value="41">Loir et Cher</option>
<option value="42">Loire</option>
<option value="43">Haute loire</option>
<option value="44">Loire Atlantique</option>
<option value="45">Loiret</option>
<option value="46">Lot</option>
<option value="47">Lot et Garonne</option>
<option value="48">Lozère</option>
<option value="49">Maine et Loire</option>
 
<option value="50">Manche</option>
<option value="51">Marne</option>
<option value="52">Haute Marne</option>
<option value="53">Mayenne</option>
<option value="54">Meurthe et Moselle</option>
<option value="55">Meuse</option>
<option value="56">Morbihan</option>
<option value="57">Moselle</option>
<option value="58">Nièvre</option>
 
<option value="59">Nord</option>
<option value="60">Oise</option>
<option value="61">Orne</option>
<option value="62">Pas de Calais</option>
<option value="63">Puy de Dôme</option>
<option value="64">Pyrénées Atlantiques</option>
<option value="65">Hautes Pyrénées</option>
<option value="66">Pyrénées Orientales</option>
<option value="67">Bas Rhin</option>
 
<option value="68">Haut Rhin</option>
<option value="69">Rhône</option>
<option value="70">Haute Saône</option>
<option value="71">Saône et Loire</option>
<option value="72">Sarthe</option>
<option value="73">Savoie</option>
<option value="74">Haute Savoie</option>
<option value="75">Paris</option>
<option value="76">Seine Maritime</option>
 
<option value="77">Seine et Marne</option>
<option value="78">Yvelines</option>
<option value="79">Deux Sèvres</option>
<option value="80">Somme</option>
<option value="81">Tarn</option>
<option value="82">Tarn et Garonne</option>
<option value="83">Var</option>
<option value="84">Vaucluse</option>
<option value="85">Vendée</option>
 
<option value="86">Vienne</option>
<option value="87">Haute Vienne</option>
<option value="88">Vosge</option>
<option value="89">Yonne</option>
<option value="90">Territoire de Belfort</option>
<option value="91">Essonne</option>
<option value="92">Haut de seine</option>
<option value="93">Seine Saint Denis</option>
<option value="94">Val de Marne</option>
 
<option value="95">Val d&#039;Oise</option>
<option value="96">Corse du Sud</option>
<option value="97">Haute Corse</option>
</select></td>
</tr>
 
 
 
	  <tr>
  <th><label for="annonce_CodePostal">Postal Code</label></th>
  <td><input type="text" name="annonce[CodePostal]" id="annonce_CodePostal" /></td>
</tr>
 
	  <tr>
  <th><label for="annonce_Ville">City</label></th>
  <td><input type="text" name="annonce[Ville]" id="annonce_Ville" /></td>
</tr>
	  <tr>
  <th><label for="annonce_TypeAnnonce">Ad type</label></th>
  <td><input type="text" name="annonce[TypeAnnonce]" id="annonce_TypeAnnonce" /></td>
</tr>
	  <tr>
 
  <th><label for="annonce_TitreAnnonce">Ad tittle</label></th>
  <td><input type="text" name="annonce[TitreAnnonce]" id="annonce_TitreAnnonce" /></td>
</tr>
	  <tr>
  <th><label for="annonce_TexteAnnonce">Enter Ad description</label></th>
  <td><textarea rows="4" cols="30" name="annonce[TexteAnnonce]" id="annonce_TexteAnnonce"></textarea></td>
</tr>
	  <tr>
 
  <th><label for="annonce_Prix">Price</label></th>
  <td><input type="text" name="annonce[Prix]" id="annonce_Prix" /></td>
</tr>
	  <tr>
  <th><label for="annonce_PhotoPrincipale">Principal photo</label></th>
  <td><input type="file" name="annonce[PhotoPrincipale]" width="100" id="annonce_PhotoPrincipale" /></td>
</tr>
	  <input type="hidden" name="annonce[id]" id="annonce_id" /><input type="hidden" name="annonce[newPhotos][0][id]" id="annonce_newPhotos_0_id" /><input type="hidden" name="annonce[_csrf_token]" value="a1e28e35ba8c67e82f7cd9556baefadb" id="annonce__csrf_token" />	
	        <tr>
 
  <th><label for="annonce_newPhotos_0_caption">Caption</label></th>
  <td><input type="text" name="annonce[newPhotos][0][caption]" id="annonce_newPhotos_0_caption" /></td>
</tr>
      <tr>
  <th><label for="annonce_newPhotos_0_filename">Filename</label></th>
  <td><input type="file" name="annonce[newPhotos][0][filename]" id="annonce_newPhotos_0_filename" /></td>
</tr>
 
    </tbody>
  </table>
 
</form>        </div>
      </div>
 
      <div id="footer">
        <div class="content">
          <span class="symfony">
           <!-- <img src="/images/jobeet-mini.png" />
            powered by <a href="http://www.symfony-project.org/">
            <img src="/images/symfony.gif" alt="symfony framework" />
            </a>-->
          </span>
          <ul>
 
 
             <a href="/frontend_dev.php/fr/userAds_show.html" class='bouton'>My Ads</a>
 
			 <a href="/frontend_dev.php/fr/disconnect.html" class='bouton'>Disconnect</a>
 
 
            <li class="feed">
  <a href="/frontend_dev.php/ads.atom">Full feed</a>
</li>
 
          </ul>
        </div>
      </div>
    </div>
 
  <script type="text/javascript">/* <![CDATA[ */
function sfWebDebugGetElementsByClassName(strClass, strTag, objContElm)
{
  // http://muffinresearch.co.uk/archives/2006/04/29/getelementsbyclassname-deluxe-edition/
  strTag = strTag || "*";
  objContElm = objContElm || document;
  var objColl = (strTag == '*' && document.all) ? document.all : objContElm.getElementsByTagName(strTag);
  var arr = new Array();
  var delim = strClass.indexOf('|') != -1  ? '|' : ' ';
  var arrClass = strClass.split(delim);
  var j = objColl.length;
  for (var i = 0; i < j; i++) {
    if(objColl[i].className == undefined) continue;
    var arrObjClass = objColl[i].className.split ? objColl[i].className.split(' ') : [];
    if (delim == ' ' && arrClass.length > arrObjClass.length) continue;
    var c = 0;
    comparisonLoop:
    {
      var l = arrObjClass.length;
      for (var k = 0; k < l; k++) {
        var n = arrClass.length;
        for (var m = 0; m < n; m++) {
          if (arrClass[m] == arrObjClass[k]) c++;
          if (( delim == '|' && c == 1) || (delim == ' ' && c == arrClass.length)) {
            arr.push(objColl[i]);
            break comparisonLoop;
          }
        }
      }
    }
  }
  return arr;
}
 
function sfWebDebugToggleMenu()
{
  var element = document.getElementById('sfWebDebugDetails');
 
  var cacheElements = sfWebDebugGetElementsByClassName('sfWebDebugCache');
  var mainCacheElements = sfWebDebugGetElementsByClassName('sfWebDebugActionCache');
  var panelElements = sfWebDebugGetElementsByClassName('sfWebDebugTop');
 
  if (element.style.display != 'none')
  {
    for (var i = 0; i < panelElements.length; ++i)
    {
      panelElements[i].style.display = 'none';
    }
 
    // hide all cache information
    for (var i = 0; i < cacheElements.length; ++i)
    {
      cacheElements[i].style.display = 'none';
    }
    for (var i = 0; i < mainCacheElements.length; ++i)
    {
      mainCacheElements[i].style.border = 'none';
    }
  }
  else
  {
    for (var i = 0; i < cacheElements.length; ++i)
    {
      cacheElements[i].style.display = '';
    }
    for (var i = 0; i < mainCacheElements.length; ++i)
    {
      mainCacheElements[i].style.border = '1px solid #f00';
    }
  }
 
  sfWebDebugToggle('sfWebDebugDetails');
  sfWebDebugToggle('sfWebDebugShowMenu');
  sfWebDebugToggle('sfWebDebugHideMenu');
}
 
function sfWebDebugShowDetailsFor(element)
{
  if (typeof element == 'string')
    element = document.getElementById(element);
 
  var panelElements = sfWebDebugGetElementsByClassName('sfWebDebugTop');
  for (var i = 0; i < panelElements.length; ++i)
  {
    if (panelElements[i] != element)
    {
      panelElements[i].style.display = 'none';
    }
  }
 
  sfWebDebugToggle(element);
}
 
function sfWebDebugToggle(element)
{
  if (typeof element == 'string')
    element = document.getElementById(element);
 
  if (element)
    element.style.display = element.style.display == 'none' ? '' : 'none';
}
 
function sfWebDebugToggleMessages(klass)
{
  var elements = sfWebDebugGetElementsByClassName(klass);
 
  var x = elements.length;
  for (var i = 0; i < x; ++i)
  {
    sfWebDebugToggle(elements[i]);
  }
}
 
function sfWebDebugToggleAllLogLines(show, klass)
{
  var elements = sfWebDebugGetElementsByClassName(klass);
  var x = elements.length;
  for (var i = 0; i < x; ++i)
  {
    elements[i].style.display = show ? '' : 'none';
  }
}
 
function sfWebDebugShowOnlyLogLines(type)
{
  var types = new Array();
  types[0] = 'info';
  types[1] = 'warning';
  types[2] = 'error';
  for (klass in types)
  {
    var elements = sfWebDebugGetElementsByClassName('sfWebDebug' + types[klass].substring(0, 1).toUpperCase() + types[klass].substring(1, types[klass].length));
    var x = elements.length;
    for (var i = 0; i < x; ++i)
    {
      if ('tr' == elements[i].tagName.toLowerCase())
      {
        elements[i].style.display = (type == types[klass]) ? '' : 'none';
      }
    }
  }
}
/* ]]> */</script>
      <div id="sfWebDebug">
        <div id="sfWebDebugBar">
          <a href="#" onclick="sfWebDebugToggleMenu(); return false;"><img src="/sf/sf_web_debug/images/sf.png" alt="Debug toolbar" /></a>
 
          <ul id="sfWebDebugDetails" class="sfWebDebugMenu">
            <li><span id="sfWebDebugSymfonyVersion">1.4.8</span></li>
<li class="sfWebDebugInfo"><a title="Configuration" href="#" onclick="sfWebDebugShowDetailsFor('sfWebDebugconfigDetails'); return false;"><img src="/sf/sf_web_debug/images/config.png" alt="Config" /> config</a></li>
 
<li class="sfWebDebugInfo"><a title="View Layer" href="#" onclick="sfWebDebugShowDetailsFor('sfWebDebugviewDetails'); return false;"><img src="/sf/sf_web_debug/images/view.png" alt="View Layer" /> view</a></li>
<li class="sfWebDebugInfo"><a title="Logs" href="#" onclick="sfWebDebugShowDetailsFor('sfWebDebuglogsDetails'); return false;"><img src="/sf/sf_web_debug/images/log.png" alt="Log" /> logs</a></li>
<li><img src="/sf/sf_web_debug/images/memory.png" alt="Memory" /> 13824.0 KB</li>
<li class="sfWebDebugInfo"><a title="Timers" href="#" onclick="sfWebDebugShowDetailsFor('sfWebDebugtimeDetails'); return false;"><img src="/sf/sf_web_debug/images/time.png" alt="Time" /> 284 ms</a></li>
<li class="sfWebDebugInfo"><a title="SQL queries" href="#" onclick="sfWebDebugShowDetailsFor('sfWebDebugdbDetails'); return false;"><img src="/sf/sf_web_debug/images/database.png" alt="SQL queries" /> 4</a></li>
            <li class="last">
 
              <a href="#" onclick="document.getElementById('sfWebDebug').style.display='none'; return false;"><img src="/sf/sf_web_debug/images/close.png" alt="Close" /></a>
            </li>
          </ul>
        </div>
 
        <div id="sfWebDebugconfigDetails" class="sfWebDebugTop" style="display:none"><h1>Configuration</h1><ul id="sfWebDebugConfigSummary"><li class="ison">debug</li><li class="isoff">xdebug</li><li class="ison">logging</li><li class="isoff">cache</li><li class="isoff">compression</li><li class="ison">tokenizer</li><li class="isoff">eaccelerator</li><li class="isoff">apc</li><li class="isoff last">xcache</li></ul>
 
    <h2>Request <a href="#" onclick="sfWebDebugToggle('sfWebDebugRequest'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugRequest" style="display: none"><pre>options:
  path_info_key: PATH_INFO
  path_info_array: SERVER
  http_port: null
  https_port: null
  default_format: null
  logging: &#039;1&#039;
  relative_url_root: null
  formats: { txt: text/plain, js: [application/javascript, application/x-javascript, text/javascript], css: text/css, json: [application/json, application/x-json], xml: [text/xml, application/xml, application/x-xml], rdf: application/rdf+xml, atom: application/atom+xml }
  no_script_name: false
parameterHolder:
  action: new
  module: ads
  sf_format: html
attributeHolder:
  sf_route: &#039;sfDoctrineRoute Object()&#039;
</pre></div>
 
    <h2>Response <a href="#" onclick="sfWebDebugToggle('sfWebDebugResponse'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugResponse" style="display: none"><pre>status:
  code: 200
  text: OK
options:
  http_protocol: HTTP/1.1
  logging: &#039;1&#039;
 
  charset: utf-8
  send_http_headers: false
  content_type: &#039;text/html; charset=utf-8&#039;
cookies: {  }
httpHeaders:
  Content-Type: &#039;text/html; charset=utf-8&#039;
javascripts:
  jquery-1.4.4.js: {  }
  jquery-1.4.4.min.js: {  }
  ajax_reg.js: {  }
  /sfJqueryReloadedPlugin/js/jquery-1.3.2.min.js: {  }
  search.js: {  }
stylesheets:
  main.css: {  }
  job.css: {  }
metas: {  }
httpMetas:
  Content-Type: &#039;text/html; charset=utf-8&#039;
</pre></div>
 
    <h2>User <a href="#" onclick="sfWebDebugToggle('sfWebDebugUser'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugUser" style="display: none"><pre>options:
  auto_shutdown: false
  culture: null
  default_culture: fr
  use_flash: true
  logging: &#039;1&#039;
 
  timeout: 1800
attributeHolder:
  symfony/user/sfUser/attributes: { id: &#039;30&#039;, level: &#039;0&#039;, login: guemmi }
culture: fr
</pre></div>
 
    <h2>Settings <a href="#" onclick="sfWebDebugToggle('sfWebDebugSettings'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugSettings" style="display: none"><pre>app_recaptcha_active_days: 30
app_recaptcha_max_jobs_on_homepage: 10
app_recaptcha_private_key: 6Leu-r4SAAAAAHMg3L5nIHXO16wWiNh4tfLSOfwc
app_recaptcha_public_key: 6Leu-r4SAAAAAOEzHQVev20QLPUKupb6kfGEtBfT
mod_ads_enabled: true
mod_ads_view_class: sfPHP
sf_admin_module_web_dir: /sfDoctrinePlugin
sf_admin_web_dir: /sf/sf_admin
sf_app: frontend
sf_app_base_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend&#039;
sf_app_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend\dev&#039;
 
sf_app_config_dir: &#039;C:\development\sfprojects\addad\apps\frontend\config&#039;
sf_app_dir: &#039;C:\development\sfprojects\addad\apps\frontend&#039;
sf_app_i18n_dir: &#039;C:\development\sfprojects\addad\apps\frontend\i18n&#039;
sf_app_lib_dir: &#039;C:\development\sfprojects\addad\apps\frontend\lib&#039;
sf_app_module_dir: &#039;C:\development\sfprojects\addad\apps\frontend\modules&#039;
sf_app_template_dir: &#039;C:\development\sfprojects\addad\apps\frontend\templates&#039;
 
sf_apps_dir: &#039;C:\development\sfprojects\addad\apps&#039;
sf_cache: false
sf_cache_dir: &#039;C:\development\sfprojects\addad\cache&#039;
sf_charset: utf-8
sf_check_lock: false
sf_compressed: false
sf_config_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend\dev\config&#039;
sf_config_dir: &#039;C:\development\sfprojects\addad\config&#039;
sf_csrf_secret: f93bb7385058e059807943ca905692e20c34e877
sf_data_dir: &#039;C:\development\sfprojects\addad\data&#039;
sf_debug: true
sf_default_culture: fr
sf_enabled_modules:
  - default
sf_environment: dev
sf_error_404_action: error404
sf_error_404_module: default
sf_error_reporting: 32767
sf_escaping_method: ESC_SPECIALCHARS
sf_escaping_strategy: true
sf_etag: false
sf_file_link_format: null
sf_i18n: on
sf_i18n_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend\dev\i18n&#039;
 
sf_jquery_autocomplete: jquery.autocomplete.min.js
sf_jquery_core: jquery-1.3.2.min.js
sf_jquery_path: null
sf_jquery_plugin_paths: null
sf_jquery_ui: jquery-ui-1.7.3.custom.min.js
sf_jquery_web_dir: /sfJqueryReloadedPlugin
sf_lib_dir: &#039;C:\development\sfprojects\addad\lib&#039;
sf_log_dir: &#039;C:\development\sfprojects\addad\log&#039;
sf_logging_enabled: true
sf_login_action: login
sf_login_module: ads
sf_module_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend\dev\modules&#039;
sf_module_disabled_action: disabled
sf_module_disabled_module: default
sf_no_script_name: false
sf_orm: doctrine
sf_plugins_dir: &#039;C:\development\sfprojects\addad\plugins&#039;
sf_root_dir: &#039;C:\development\sfprojects\addad&#039;
sf_secure_action: secure
sf_secure_module: default
sf_standard_helpers:
  - Partial
  - Cache
  - I18N
sf_symfony_lib_dir: &#039;C:\development\sfprojects\addad\lib\vendor\symfony\lib&#039;
 
sf_template_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend\dev\template&#039;
sf_test_cache_dir: &#039;C:\development\sfprojects\addad\cache\frontend\dev\test&#039;
sf_test_dir: &#039;C:\development\sfprojects\addad\test&#039;
sf_upload_dir: &#039;C:\development\sfprojects\addad\web\uploads&#039;
sf_use_database: true
sf_web_debug: true
sf_web_debug_web_dir: /sf/sf_web_debug
sf_web_dir: &#039;C:\development\sfprojects\addad\web&#039;
symfony.asset.javascripts_included: true
symfony.asset.stylesheets_included: true
</pre></div>
 
 
    <h2>Globals <a href="#" onclick="sfWebDebugToggle('sfWebDebugGlobals'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugGlobals" style="display: none"><pre>cookie:
  symfony: v2kt4aj40m5b2pkikv45u440g7
env: {  }
files: {  }
get: {  }
post: {  }
server:
  COMSPEC: &#039;C:\Windows\system32\cmd.exe&#039;
  DOCUMENT_ROOT: &#039;C:/development/sfprojects/addad/web&#039;
  GATEWAY_INTERFACE: CGI/1.1
  HTTP_ACCEPT: &#039;text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8&#039;
  HTTP_ACCEPT_CHARSET: &#039;ISO-8859-1,utf-8;q=0.7,*;q=0.7&#039;
 
  HTTP_ACCEPT_ENCODING: &#039;gzip,deflate&#039;
  HTTP_ACCEPT_LANGUAGE: &#039;fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3&#039;
  HTTP_CONNECTION: keep-alive
  HTTP_COOKIE: symfony=v2kt4aj40m5b2pkikv45u440g7
  HTTP_HOST: www.addad.com.localhost
  HTTP_KEEP_ALIVE: &#039;115&#039;
  HTTP_REFERER: &#039;http://www.addad.com.localhost/frontend_dev.php/ads/new.html&#039;
  HTTP_USER_AGENT: &#039;Mozilla/5.0 (Windows; U; Windows NT 6.1; fr; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13&#039;
 
  PATH: &#039;C:\csvn\bin\;C:\csvn\Python25\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\Common Files\Ulead Systems\MPEG;C:\Program Files\Broadcom\Broadcom 802.11\Driver;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\QuickTime\QTSystem\;&#039;
  PATHEXT: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
  PATH_INFO: /ads/new.html
  PATH_TRANSLATED: &#039;C:\development\sfprojects\addad\web\ads\new.html&#039;
  PHP_SELF: /frontend_dev.php/ads/new.html
  QUERY_STRING: &#039;&#039;
  REMOTE_ADDR: 127.0.0.1
  REMOTE_PORT: &#039;60368&#039;
  REQUEST_METHOD: GET
  REQUEST_TIME: 1294594681
  REQUEST_URI: /frontend_dev.php/ads/new.html
  SCRIPT_FILENAME: &#039;C:/development/sfprojects/addad/web/frontend_dev.php&#039;
 
  SCRIPT_NAME: /frontend_dev.php
  SERVER_ADDR: 127.0.0.2
  SERVER_ADMIN: admin@localhost
  SERVER_NAME: www.addad.com.localhost
  SERVER_PORT: &#039;80&#039;
  SERVER_PROTOCOL: HTTP/1.1
  SERVER_SIGNATURE: &#039;&#039;
  SERVER_SOFTWARE: &#039;Apache/2.2.11 (Win32) PHP/5.3.0&#039;
  SystemRoot: &#039;C:\Windows&#039;
  WINDIR: &#039;C:\Windows&#039;
 
session:
  symfony/user/sfUser/attributes: { symfony/user/sfUser/attributes: { id: &#039;30&#039;, login: guemmi, level: &#039;0&#039; } }
  symfony/user/sfUser/authenticated: true
  symfony/user/sfUser/credentials: [member]
  symfony/user/sfUser/culture: fr
  symfony/user/sfUser/lastRequest: 1294594553
</pre></div>
 
    <h2>Php <a href="#" onclick="sfWebDebugToggle('sfWebDebugPhp'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugPhp" style="display: none"><pre>php: 5.3.0
os: &#039;Windows NT GUEMMI-PC 6.1 build 7600 ((null)) i586&#039;
extensions:
  32: apache2handler
  1: bcmath
  2: calendar
  3: &#039;com_dotnet (0.1)&#039;
 
  0: &#039;Core (5.3.0)&#039;
  4: ctype
  5: &#039;date (5.3.0)&#039;
  24: &#039;dom (20031129)&#039;
  6: ereg
  7: &#039;filter (0.11.0)&#039;
  8: ftp
  33: gd
  9: &#039;hash (1.0)&#039;
 
  10: iconv
  11: &#039;json (1.2.1)&#039;
  23: libxml
  34: mbstring
  12: mcrypt
  41: mhash
  35: &#039;mysql (1.0)&#039;
  36: &#039;mysqli (0.1)&#039;
  13: &#039;mysqlnd (mysqlnd 5.0.5-dev - 081106 - $Revision: 1.3.2.27 $)&#039;
  14: &#039;odbc (1.0)&#039;
 
  26: openssl
  15: pcre
  25: &#039;PDO (1.0.4dev)&#039;
  38: &#039;pdo_mysql (1.0.2)&#039;
  39: &#039;pdo_sqlite (1.0.1)&#039;
  37: &#039;Phar (2.0.0-dev)&#039;
  16: &#039;Reflection ($Revision: 1.164.2.33.2.45.2.58 $)&#039;
 
  17: session
  27: &#039;SimpleXML (0.1)&#039;
  18: &#039;SPL (0.2)&#039;
  19: &#039;standard (5.3.0)&#039;
  20: &#039;tokenizer (0.1)&#039;
  28: wddx
  29: xml
  30: &#039;xmlreader (0.1)&#039;
 
  40: &#039;xmlrpc (0.51)&#039;
  31: &#039;xmlwriter (0.1)&#039;
  21: &#039;zip (1.9.1)&#039;
  22: &#039;zlib (1.1)&#039;
</pre></div>
 
 
    <h2>Symfony <a href="#" onclick="sfWebDebugToggle('sfWebDebugSymfony'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
    <div id="sfWebDebugSymfony" style="display: none"><pre>version: 1.4.8
path: &#039;C:\development\sfprojects\addad\lib\vendor\symfony\lib&#039;
</pre></div>
    </div>
<div id="sfWebDebugviewDetails" class="sfWebDebugTop" style="display:none"><h1>View Layer</h1><h2>Template: <span title="SF_ROOT_DIR\apps\frontend\modules/ads/templates/newSuccess.php">ads&nbsp;&hellip;&nbsp;newSuccess.php</span> <a href="#" onclick="sfWebDebugToggle('sfWebDebugViewTemplate1'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
<div id="sfWebDebugViewTemplate1" style="display:block">
 
<p>Parameters:</p>
<ul>
<li><code>$form3</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\form\doctrine\LoginnForm.class.php">LoginForm</span>)</span>
<a href="#" onclick="sfWebDebugToggle('sfWebDebugViewForm1'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a>
<div id="sfWebDebugViewForm1" style="display:none">
<ul><li>
<code>$form3['login']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInput.class.php">sfWidgetFormInput</span>)</span>
 
</li>
<li>
<code>$form3['password']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputPassword.class.php">sfWidgetFormInputPassword</span>)</span>
</li>
<li>
<code>$form3['_csrf_token']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
</li></ul>
 
</div></li>
<li><code>$form</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\form\doctrine\AnnonceForm.class.php">AnnonceForm</span>)</span>
<a href="#" onclick="sfWebDebugToggle('sfWebDebugViewForm2'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a>
<div id="sfWebDebugViewForm2" style="display:none">
<ul><li>
<code>$form['id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
</li>
 
<li>
<code>$form['Categorie_id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\widget\sfWidgetFormDoctrineChoice.class.php">sfWidgetFormDoctrineChoice</span>)</span>
</li>
<li>
<code>$form['Region_id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\widget\sfWidgetFormDoctrineChoice.class.php">sfWidgetFormDoctrineChoice</span>)</span>
</li>
<li>
 
<code>$form['Departement_id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\widget\sfWidgetFormDoctrineChoice.class.php">sfWidgetFormDoctrineChoice</span>)</span>
</li>
<li>
<code>$form['CodePostal']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
<code>$form['Ville']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
 
</li>
<li>
<code>$form['TexteAnnonce']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormTextarea.class.php">sfWidgetFormTextarea</span>)</span>
</li>
<li>
<code>$form['TitreAnnonce']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
 
<li>
<code>$form['Prix']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
<code>$form['TypeAnnonce']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
 
<code>$form['PhotoPrincipale']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputFileEditable.class.php">sfWidgetFormInputFileEditable</span>)</span>
</li>
<li>
<code>$form['newPhotos'][0]['filename']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputFileEditable.class.php">sfWidgetFormInputFileEditable</span>)</span>
</li>
<li>
<code>$form['newPhotos'][0]['caption']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
 
</li>
<li>
<code>$form['newPhotos'][0]['id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
</li>
 
<li>
<code>$form['_csrf_token']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
 
</li></ul>
</div></li>
</ul>
</div>
<h2>Partial: <span title="SF_ROOT_DIR\apps\frontend\modules/ads/templates/_form.php">ads&nbsp;&hellip;&nbsp;_form.php</span> <a href="#" onclick="sfWebDebugToggle('sfWebDebugViewTemplate2'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a></h2>
<div id="sfWebDebugViewTemplate2" style="display:none">
<p>Parameters:</p>
<ul>
<li><code>$form</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\form\doctrine\AnnonceForm.class.php">AnnonceForm</span>)</span>
 
<a href="#" onclick="sfWebDebugToggle('sfWebDebugViewForm3'); return false;" title="Toggle details"><img src="/sf/sf_web_debug/images/toggle.gif" alt="Toggle details"/></a>
<div id="sfWebDebugViewForm3" style="display:none">
<ul><li>
<code>$form['id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
</li>
<li>
<code>$form['Categorie_id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\widget\sfWidgetFormDoctrineChoice.class.php">sfWidgetFormDoctrineChoice</span>)</span>
 
</li>
<li>
<code>$form['Region_id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\widget\sfWidgetFormDoctrineChoice.class.php">sfWidgetFormDoctrineChoice</span>)</span>
</li>
<li>
<code>$form['Departement_id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\widget\sfWidgetFormDoctrineChoice.class.php">sfWidgetFormDoctrineChoice</span>)</span>
</li>
 
<li>
<code>$form['CodePostal']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
<code>$form['Ville']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
 
<code>$form['TexteAnnonce']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormTextarea.class.php">sfWidgetFormTextarea</span>)</span>
</li>
<li>
<code>$form['TitreAnnonce']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
<code>$form['Prix']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
 
</li>
<li>
<code>$form['TypeAnnonce']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
<code>$form['PhotoPrincipale']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputFileEditable.class.php">sfWidgetFormInputFileEditable</span>)</span>
</li>
 
<li>
<code>$form['newPhotos'][0]['filename']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputFileEditable.class.php">sfWidgetFormInputFileEditable</span>)</span>
</li>
<li>
<code>$form['newPhotos'][0]['caption']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputText.class.php">sfWidgetFormInputText</span>)</span>
</li>
<li>
 
<code>$form['newPhotos'][0]['id']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
</li>
 
<li>
<code>$form['_csrf_token']</code> <span class="sfWebDebugDataType">(<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\widget\sfWidgetFormInputHidden.class.php">sfWidgetFormInputHidden</span>)</span>
</li></ul>
</div></li>
 
</ul>
</div></div>
<div id="sfWebDebuglogsDetails" class="sfWebDebugTop" style="display:none"><h1>Logs</h1>
      <ul id="sfWebDebugLogMenu">
        <li><a href="#" onclick="sfWebDebugToggleAllLogLines(true, 'sfWebDebugLogLine'); return false;">[all]</a></li>
        <li><a href="#" onclick="sfWebDebugToggleAllLogLines(false, 'sfWebDebugLogLine'); return false;">[none]</a></li>
        <li><a href="#" onclick="sfWebDebugShowOnlyLogLines('info'); return false;"><img src="/sf/sf_web_debug/images/info.png" alt="Show only infos" /></a></li>
        <li><a href="#" onclick="sfWebDebugShowOnlyLogLines('warning'); return false;"><img src="/sf/sf_web_debug/images/warning.png" alt="Show only warnings" /></a></li>
        <li><a href="#" onclick="sfWebDebugShowOnlyLogLines('error'); return false;"><img src="/sf/sf_web_debug/images/error.png" alt="Show only errors" /></a></li>
 
        <li><a href="#" onclick="sfWebDebugToggleMessages('Doctrine_Connection_Mysql'); return false;">Doctrine_Connection_Mysql</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('adsActions'); return false;">adsActions</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('sfFilterChain'); return false;">sfFilterChain</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('sfPHPView'); return false;">sfPHPView</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('sfPartialView'); return false;">sfPartialView</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('sfPatternRouting'); return false;">sfPatternRouting</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('sfWebDebugLogger'); return false;">sfWebDebugLogger</a></li>
<li><a href="#" onclick="sfWebDebugToggleMessages('sfWebResponse'); return false;">sfWebResponse</a></li>
 
      </ul>
      <div id="sfWebDebugLogLines"><table class="sfWebDebugLogs">
      <tr>
        <th>#</th>
        <th>type</th>
        <th>message</th>
      </tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo sfPatternRouting'><td class="sfWebDebugLogNumber">1</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\routing\sfPatternRouting.class.php">sfPatternRouting</span></td><td>Match route "<span class="sfWebDebugLogInfo">ads_new</span>" (/ads/new.:sf_format) for /ads/new.html with parameters array (  &#039;module&#039; =&gt; &#039;ads&#039;,  &#039;action&#039; =&gt; &#039;new&#039;,  &#039;sf_format&#039; =&gt; &#039;html&#039;,) </td></tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo sfFilterChain'><td class="sfWebDebugLogNumber">2</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\filter\sfFilterChain.class.php">sfFilterChain</span></td><td>Executing filter "<span class="sfWebDebugLogInfo">sfRenderingFilter</span>" </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo sfFilterChain'><td class="sfWebDebugLogNumber">3</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\filter\sfFilterChain.class.php">sfFilterChain</span></td><td>Executing filter "<span class="sfWebDebugLogInfo">sfBasicSecurityFilter</span>" </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo sfFilterChain'><td class="sfWebDebugLogNumber">4</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\filter\sfFilterChain.class.php">sfFilterChain</span></td><td>Executing filter "<span class="sfWebDebugLogInfo">sfExecutionFilter</span>" </td></tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo adsActions'><td class="sfWebDebugLogNumber">5</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\apps\frontend\modules\ads\actions\actions.class.php">adsActions</span></td><td>Call "<span class="sfWebDebugLogInfo">adsActions-&gt;executeNew()</span>" </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo sfPHPView'><td class="sfWebDebugLogNumber">6</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\view\sfPHPView.class.php">sfPHPView</span></td><td>Render "<span class="sfWebDebugLogInfo">sf_app_dir\modules/ads/templates/newSuccess.php</span>" </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo sfPartialView'><td class="sfWebDebugLogNumber">7</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\view\sfPartialView.class.php">sfPartialView</span></td><td>Render "<span class="sfWebDebugLogInfo">sf_app_dir\modules/ads/templates/_form.php</span>" </td></tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo Doctrine_Connection_Mysql'><td class="sfWebDebugLogNumber">8</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\vendor\doctrine\Doctrine\Connection\Mysql.php">Doctrine_Connection_Mysql</span></td><td>exec : <span class="sfWebDebugLogInfo">SET</span> NAMES &#039;UTF8&#039; - () </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo Doctrine_Connection_Mysql'><td class="sfWebDebugLogNumber">9</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\vendor\doctrine\Doctrine\Connection\Mysql.php">Doctrine_Connection_Mysql</span></td><td>query : <span class="sfWebDebugLogInfo">SELECT</span> c.id <span class="sfWebDebugLogInfo">AS</span> c__id, c.name <span class="sfWebDebugLogInfo">AS</span> c__name, c.famille <span class="sfWebDebugLogInfo">AS</span> c__famille, c.created_at <span class="sfWebDebugLogInfo">AS</span> c__created_at, c.updated_at <span class="sfWebDebugLogInfo">AS</span> c__updated_at <span class="sfWebDebugLogInfo">FROM</span> categorie c - () </td></tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo Doctrine_Connection_Mysql'><td class="sfWebDebugLogNumber">10</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\vendor\doctrine\Doctrine\Connection\Mysql.php">Doctrine_Connection_Mysql</span></td><td>query : <span class="sfWebDebugLogInfo">SELECT</span> r.id <span class="sfWebDebugLogInfo">AS</span> r__id, r.name <span class="sfWebDebugLogInfo">AS</span> r__name <span class="sfWebDebugLogInfo">FROM</span> region r - () </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo Doctrine_Connection_Mysql'><td class="sfWebDebugLogNumber">11</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\plugins\sfDoctrinePlugin\lib\vendor\doctrine\Doctrine\Connection\Mysql.php">Doctrine_Connection_Mysql</span></td><td>query : <span class="sfWebDebugLogInfo">SELECT</span> d.id <span class="sfWebDebugLogInfo">AS</span> d__id, d.region_id <span class="sfWebDebugLogInfo">AS</span> d__region_id, d.name <span class="sfWebDebugLogInfo">AS</span> d__name <span class="sfWebDebugLogInfo">FROM</span> departement d - () </td></tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo sfPHPView'><td class="sfWebDebugLogNumber">12</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\view\sfPHPView.class.php">sfPHPView</span></td><td>Decorate content with "<span class="sfWebDebugLogInfo">sf_app_dir\templates/layout.php</span>" </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo sfPHPView'><td class="sfWebDebugLogNumber">13</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\view\sfPHPView.class.php">sfPHPView</span></td><td>Render "<span class="sfWebDebugLogInfo">sf_app_dir\templates/layout.php</span>" </td></tr>
<tr class='sfWebDebugLogLine sfWebDebugInfo sfWebResponse'><td class="sfWebDebugLogNumber">14</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\response\sfWebResponse.class.php">sfWebResponse</span></td><td>Send status "<span class="sfWebDebugLogInfo">HTTP/1.1 200 OK</span>" </td></tr>
 
<tr class='sfWebDebugLogLine sfWebDebugInfo sfWebResponse'><td class="sfWebDebugLogNumber">15</td><td class="sfWebDebugLogType"><img src="/sf/sf_web_debug/images/info.png" alt="Info"/>&nbsp;<span title="SF_ROOT_DIR\lib\vendor\symfony\lib\response\sfWebResponse.class.php">sfWebResponse</span></td><td>Send header "<span class="sfWebDebugLogInfo">Content-Type: text/html; charset=utf-8</span>" </td></tr>
</table></div>
    </div>
<div id="sfWebDebugtimeDetails" class="sfWebDebugTop" style="display:none"><h1>Timers</h1><table class="sfWebDebugLogs" style="width: 300px"><tr><th>type</th><th>calls</th><th>time (ms)</th><th>time (%)</th></tr><tr><td class="sfWebDebugLogType">Configuration</td><td class="sfWebDebugLogNumber" style="text-align: right">9</td><td style="text-align: right">12.04</td><td style="text-align: right">4</td></tr><tr><td class="sfWebDebugLogType">Factories</td><td class="sfWebDebugLogNumber" style="text-align: right">1</td><td style="text-align: right">59.29</td><td style="text-align: right">20</td></tr><tr><td class="sfWebDebugLogType">Action "ads/new"</td><td class="sfWebDebugLogNumber" style="text-align: right">1</td><td style="text-align: right">73.43</td><td style="text-align: right">25</td></tr><tr><td class="sfWebDebugLogType">View "Success" for "ads/new"</td><td class="sfWebDebugLogNumber" style="text-align: right">1</td><td style="text-align: right">90.30</td><td style="text-align: right">31</td></tr><tr><td class="sfWebDebugLogType">Partial "ads/_form"</td><td class="sfWebDebugLogNumber" style="text-align: right">1</td><td style="text-align: right">67.62</td><td style="text-align: right">23</td></tr><tr><td class="sfWebDebugLogType">Database (Doctrine)</td><td class="sfWebDebugLogNumber" style="text-align: right">4</td><td style="text-align: right">0.02</td><td style="text-align: right">0</td></tr></table></div>
 
<div id="sfWebDebugdbDetails" class="sfWebDebugTop" style="display:none"><h1>SQL queries</h1>
      <div id="sfWebDebugDatabaseLogs">
        <h3>Doctrine Version: 1.2.3</h3>
        <ol>
        <li>
          <p class="sfWebDebugDatabaseQuery"><span class="sfWebDebugLogInfo">SET</span> NAMES &#039;UTF8&#039;</p>
 
          <div class="sfWebDebugDatabaseLogInfo">0.00s, "doctrine" connection</div>
        </li>
 
        <li>
          <p class="sfWebDebugDatabaseQuery"><span class="sfWebDebugLogInfo">SELECT</span> c.id <span class="sfWebDebugLogInfo">AS</span> c__id, c.name <span class="sfWebDebugLogInfo">AS</span> c__name, c.famille <span class="sfWebDebugLogInfo">AS</span> c__famille, c.created_at <span class="sfWebDebugLogInfo">AS</span> c__created_at, c.updated_at <span class="sfWebDebugLogInfo">AS</span> c__updated_at <span class="sfWebDebugLogInfo">FROM</span> categorie c</p>
 
          <div class="sfWebDebugDatabaseLogInfo">0.00s, "doctrine" connection</div>
        </li>
 
        <li>
          <p class="sfWebDebugDatabaseQuery"><span class="sfWebDebugLogInfo">SELECT</span> r.id <span class="sfWebDebugLogInfo">AS</span> r__id, r.name <span class="sfWebDebugLogInfo">AS</span> r__name <span class="sfWebDebugLogInfo">FROM</span> region r</p>
 
          <div class="sfWebDebugDatabaseLogInfo">0.00s, "doctrine" connection</div>
        </li>
 
        <li>
          <p class="sfWebDebugDatabaseQuery"><span class="sfWebDebugLogInfo">SELECT</span> d.id <span class="sfWebDebugLogInfo">AS</span> d__id, d.region_id <span class="sfWebDebugLogInfo">AS</span> d__region_id, d.name <span class="sfWebDebugLogInfo">AS</span> d__name <span class="sfWebDebugLogInfo">FROM</span> departement d</p>
 
          <div class="sfWebDebugDatabaseLogInfo">0.00s, "doctrine" connection</div>
        </li></ol>
      </div>
    </div>
      </div>
    </body>
</html>
fastone650 est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 18h19.


 
 
 
 
Partenaires

Hébergement Web