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

Langage PHP Discussion :

Pas d'affichage de ma page


Sujet :

Langage PHP

  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2012
    Messages
    335
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2012
    Messages : 335
    Points : 70
    Points
    70
    Par défaut Pas d'affichage de ma page
    Bonjour à tous,
    D'abord je voudrais vous dire que je n'ai aucune idée de la nature du probleme, je ne vous en voud""rais donc pas si vous dépélacez cette discussion.
    Voici mes fichiers :
    index.php
    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
    <?php 
     
    ini_set ("display_errors", "on");
    error_reporting (E_ALL); 
     
    session_start ();
    /* $f = $_GET['f']; */
    if (empty  ($_GET['f']) or empty ($_GET['control'])) {
     
    	$_SESSION ['c'] = false;
    	require_once ("includes/controleur/display.php");
    	principal();
     
    }
     
    else {
     
    	$f = $_GET['f'];
     
    	if (file_exists("includes/controleur/" . $_GET['control'])) {
     
    		require_once ("includes/controleur/" . $_GET['control']);
     
    	}
     
    	else {
     
    		echo ("<script> alert('Le fichier n'existe pas'); </script>");
     
    	}
     
    	if (stripos ($f, '*') != false) {
     
    		$f2 = explode ("*", $f);
    		$n = intval ($f2 ['1']);
    			$_SESSION ['n'] = $n;
    			$f = $f2 [0];
     
    	}
     
    	if (in_array ($f, $functions)) {
     
    		$f ();
     
    	}
     
    	else {
     
    		echo ("<script> alert('La fonction n'existe pas'); </script>");
     
    	}
     
    }
     
    ?>
    display.php
    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
    <?php
     
    require_once ("includes/vue/affichage_galleries.php");
     
    $functions = array ('principal', 'tous', 'retour', 'cv', 'crayonscire', 'crayonscouleurs', 'crayonsaquarelles', 'crayonsfusains', 'crayonsgraphites', 'crayonspapier',
    'crayonspapier', 'encre', 'feutres', 'ordinateur', 'pastels', 'pastelsaquarelles', 'pastelshuile', 'peinture', 'peintureacryllique', 'sanguines');
     
    function principal () {
     
    	aff_acc ();
     
    	}
     
    function tous () {
     
    	aff_tous ();
     
    	}
     
    function retour () {
     
    if(isset($_SESSION['titre'])) {	
     
    	$_SESSION['titre'] = utf8_decode ($_SESSION['titre']);
    	$_SESSION ['chemin'] = utf8_decode ($_SESSION['chemin']);
    	$_SESSION['date'] = utf8_decode ($_SESSION['date']);
    	$_SESSION['explication'] = utf8_decode ($_SESSION['explication']);
    	$_SESSION['pre'] = utf8_decode ($_SESSION['pre']);
    	$_SESSION['liste'] = utf8_decode ($_SESSION['liste']);
     
    	}
     
    	aff_acc ();
     
    	}
     
    function cv () {
     
    	aff_cv ();
     
    	}
     
    function crayonscire () {
     
    	aff_crayonscire ();
     
    	}
     
    function crayonscouleurs () {
     
    	aff_crayonscouleurs ();
     
    	}
     
    function crayonsaquarelles () {
     
    	aff_crayonsaquarelles ();
     
    	}
     
    function crayonsfusains () {
     
    	aff_crayonsfusains ();
     
    	}
     
    function crayonsgraphites () {
     
    	aff_crayonsgraphites ();
     
    	}
     
    function crayonspapier () {
     
    	aff_crayonspapier ();
     
    	}
     
    function encre () {
     
    	aff_encre ();
     
    	}
     
    function feutres () {
     
    	aff_feutres ();
     
    	}
     
    function ordinateur () {
     
    	aff_ordinateur ();
     
    	}
     
    function pastels () {
     
    	aff_pastels ();
     
    	}
     
    function pastelsaquarelles () {
     
    	aff_pastelsaquarelles ();
     
    	}
     
    function pastelshuile () {
     
    	aff_pastelshuile ();
     
    	}
     
    function peinture () {
     
    	aff_peinture ();
     
    	}
     
    function peintureacryllique () {
     
    	aff_peintureacryllique ();
     
    	}
     
    function sanguines () {
     
    	aff_sanguines ();
     
    	}
     
    ?>
    affichage_galleries.php
    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
    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
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    <?php
     
     function aff_cv () { 
     
    	echo ("
    
    <!DOCTYPE html5>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/cv.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>Curriculum Vitae</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
    		<header>    
    	    	<h1 class='s_g'>Curriculum Vitae</h1>
    	    	<br><br>
    	    	<p id='ac'>Bonjour, je suis développeur web, et aimerais faire partie de votre entreprise...</p>
    	   </header>
    		<section>
    	    	<article>
    	    		<table>
    		    		<caption class='maj' class='s_g'>formations</caption>
    		    		<tr>
    		    			<td class='one'>2012-2014</td>
    		    			<td class='two'>DUT informatique</td>
    		    			<td class='three'>IUT Paris Descartes</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>2012</td>
    		    			<td class='two'>Bac Economique et Sociale Spécialité Mathématiques, Option Arts Plastique</td>
    		    			<td class='three'>Lycée Saint-Michel de Picpus Paris</td>
    		    		</tr>
    	    		</table>
    	    		<table>
    		    		<caption class='maj' class='s_g'>experieces</caption>
    		    		<tr>
    		    			<td class='one'>Avril-Juin 2014</td>
    		    			<td class='two'>Stage Thales Air Systems (Rungis, 94) : Mise en place d'une application web visant à afficher sous forme de tableau diverses données relatives aux actions de l'entreprise et extraites d'une base de données (HTML5, CSS3, PHP5, Javascript, MySQL)</td>
    		    			<td class='three'>12 semaines</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Juillet 2011</td>
    		    			<td class='two'>Stage d'arts Prep'art Paris 20<sup>ème</sup> : dessin (crayons, fusains), peinture (acrylliques, gouaches, encres de Chine), gravure, arts plastiques…</td>
    		    			<td class='three'>1 semaine</td>
    		    		</tr>
    	    		</table>
    	    		<table>
    		    		<caption class='maj' class='s_g'>competences informatiques</caption>
    		    		<tr>
    		    			<td class='one'>Logiciels d'infograohie</td>
    		    			<td class='twoo'>Adobe Photoshop,  Adobe Photofiltre, Inkscape</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Systèmes d'exploitation utilisés</td>
    		    			<td class='twoo'>Microsoft Windows, Linux</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Logiciels de programmation utilisés</td>
    		    			<td class='twoo'>Nano, Dreamweaver, Acess, Eclipse, Scilab, Emacs, Kate, Bluefish, Visual Studio C, Visual Studio C++, Visual Studio Basic</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Projets réalisés</td>
    		    			<td class='twoo'>Jeu de Télé-Réalité (MCD, MLD, MCC, MCD, MOT, formulaires access, SQL, GANTT), Fiche de requêtes (SQL), Jeu du Pacman (Java), Prise d'inscriptions (formulaires Visual Basic), Conception (artistique), création (code : HTML5, CSS3, PHP5, Javascript) et mise en ligne de site web (URL : <a href='http://yann.quentin.tf'>yann.quentin.tf</a>), Création d'un générateur de forums (HTML, CSS, PHP, JS), Application Javascript (Jquery, Leaflet, Ajax, HTML5)</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Base de données</td>
    		    			<td class='twoo'>SGBD : Norme SQL 2013 (SQL LDD,SQL LMD)<br>Logiciels : Oracle  MySQL Server, Microsoft Access</td>
    		    		</tr>
    	    		</table>
    	    		<table>
    		    		<caption class='maj' class='s_g'>competences linguistiques</caption>
    		    		<tr>
    		    			<td class='one'>Anglais</td>
    		    			<td class='twoo'>Courant</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Gujarati</td>
    		    			<td class='twoo'>Courant</td>
    		    		</tr>
    		    		<tr>
    		    			<td class='one'>Langages de programmation</td>
    		    			<td class='twoo'>C, C++, Java, Visual basic, HTML, CSS, PHP, JavaScript, SQL, PLSQL,  Algèbre relationnel, Assembleur, Cobol, UML</td>
    		    		</tr>
    	    		</table>
    	    	</article>
    	    	<aside id='b_g'>
    	    		<table>
    		    		<caption class='maj' class='s_g'>centres d'interets</caption>
    		    		<tr>
    		    			<td>Code :</td>
    		    			<td>Langages de Développement Web en général</td>
    		    		</tr>
    		    		<tr>
    		    			<td>Voyages :</td>
    		    			<td>Tanzanie, Inde, Europe</td>
    		    		</tr>
    	    		</table>
    	    	</aside>
    	    	<aside id='h_g'>
    		    	<table>
    		    	<caption>Coordonnées</caption>
    			    	<tr>
    			    		<td>Nom :</td>
    			    		<td>QUENTIN Yann</td>
    			    	</tr>	
    			    	<tr>
    			    		<td>Ville :</td>
    			    		<td>Le Kremlin-Bicêtre, 94</td>
    			    	</tr>	
    			    	<tr>
    			    		<td>Adresse e-mail :</td>
    			    		<td><a href='mailto:quentin.yann@gmail.com'>quentin.yann@gmail.com</a></td>
    			    	</tr>	
    			    	<tr>
    			    		<td>Téléphone portable :</td>
    			    		<td>+33 6 33 62 24 55</td>
    			    	</tr>	
    			    		<td>Date de Naissance :</td>
    			    		<td>19 novembre 1993</td>
    			    	</tr>		    	
    		    	</table>
    			</aside>
    		</section>
    	</body>
    </html>
    
    	");
     
    };
     
    function aff_acc () { 
     
    	echo ("
    	
    <!DOCTYPE html5>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/acc.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Accueil</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/connect.tpl');
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
    			<h1>Accueil - Bonjour et bienvenue sur ME's Art, le site de Yann QUENTIN, site sur lequel vous pouvez voir toutes les oeuvres que j'ai réalisées.</h1>
      			<h2>Au cas ou vous auriez oublié, je vous rappelle que mes oeuvres sont réalisées par Yann QUENTIN.</h2>
                    </article>
    	");                
    			include ('templates/aside.tpl'); 
    	echo ("
    				</section>
    	");
    			include ('templates/footer.tpl');
    	echo ("
            </div>
        </body>
    </html>
    	");
     
    };
     
    function aff_tous () {
     
    	echo ("
    	<!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Tous</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
          <div id='bloc_page'>
            ");
     
            include("templates/header.php");
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/connect.tpl');
           	} 
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
    	echo ("
                <section>
                    <article>
                            <h1>Tous</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*1'><figure class='paysage'><img src='img/abstraction_8_juillet___mini.png'alt='Abstraction' title='Abstraction'><figcaption><br>Abstraction</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*2'><figure class='portrait'><img src='img/chien_domestique_aout_septembre_2009_mini.png'alt='Chien domestique' title='Chien domestique'><figcaption><br>Chien domestique</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*3'><figure class='paysage'><img src='img/chien_vache_vers_2000_mini.png'alt='Chien-vache' title='Chien-vache'><figcaption><br>Chien-vache</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*4'><figure class='paysage'><img src='img/cygne_vers_2000_mini.png'alt='Cygne' title='Cygne'><figcaption><br>Cygne</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*5'><figure class='paysage'><img src='img/dans_l_ombre_18_juillet_2014_mini.png'alt='Dans l'ombre' title='Dans l'ombre'><figcaption><br>Dans l'ombre</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*6'><figure class='portrait'><img src='img/egypte_ete_2008_mini.png'alt='Egypte' title='Egypte'><figcaption><br>Egypte</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*7'><figure class='paysage'><img src='img/essai_de_peinture_2_juillet___mini.png'alt='Essai de peinture' title='Essai de peinture'><figcaption><br>Essai de peinture</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*8'><figure class='paysage'><img src='img/l_arc_en_ciel_2011_2012_mini.png' alt='L'arc-en-ciel' title='L'arc-en-ciel'><figcaption><br>L'arc-en-ciel</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*9'><figure class='paysage'><img src='img/l_ecologiste_de_l_impossible_2011_2012_mini.png' alt='L'écologiste de l'impossible' title='L'écologiste de l'impossible'><figcaption><br>L'écologiste de l'impossible</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*10'><figure class='paysage'><img src='img/l_homme_est_aveugle_janvier_fevrier_2012_mini.png' alt='L'homme est aveugle' title='L'homme est aveugle'><figcaption><br>L'homme est aveugle</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*11'><figure class='portrait'><img src='img/l_oeil_16_juillet___mini.png' alt='L'oeil' title='L'oeil'><figcaption><br>L'oeil</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*12'><figure class='paysage'><img src='img/l_ombre_et_la_lumiere_janvier_2012_mini.png' alt='L'ombre et la lumière' title='L'ombre et la lumière'><figcaption><br>L'ombre et la lumière</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*13'><figure class='portrait'><img src='img/la_joconde_de_modigliani_vers_2000_mini.png' alt='La Joconde de MODIGLIANI' title='La Joconde de MODIGLIANI'><figcaption><br>La Joconde de MODIGLIANI</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*14'><figure class='paysage'><img src='img/la_porte_demoniaque_juin_2011_mini.png' alt='La Porte démoniaque' title='La Porte démoniaque'><figcaption><br>La Porte démoniaque</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*15'><figure class='paysage'><img src='img/la_vie_et_la_mort_2011_2012_mini.png' alt='La Vie et la Mort' title='La Vie et la Mort'><figcaption><br>La Vie et la Mort</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*16'><figure class='paysage'><img src='img/le_mal_est_partout_mars_2012_mini.png' alt='Le mal est partout' title='Le mal est partout'><figcaption><br>Le mal est partout</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*17'><figure class='paysage'><img src='img/licorne_2010_mini.png' alt='Licorne' title='Licorne'><figcaption><br>Licorne</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*18'><figure class='portrait'><img src='img/lion_marin_2009_2010_mini.png' alt='Lion marin' title='Lion marin'><figcaption><br>Lion marin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*19'><figure class='paysage'><img src='img/loin_2011_mini.png' alt='Loin' title='Loin'><figcaption><br>Loin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*20'><figure class='portrait'><img src='img/mr_baobab_2011_2012_mini.png' alt='Mr Baobab' title='Mr Baobab'><figcaption><br>Mr Baobab</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*21'><figure class='paysage'><img src='img/narcisse_2009_2010_mini.png' alt='Narcisse' title='Narcisse'><figcaption><br>Narcisse</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*22'><figure class='paysage'><img src='img/origines_3eme_trimestre_2011_mini.png' alt='Origines' title='Origines'><figcaption><br>Origines</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*23'><figure class='paysage'><img src='img/ours_polaire_vers_2000_mini.png' alt='Ours polaire' title='Ours polaire'><figcaption><br>Ours polaire</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*24'><figure class='paysage'><img src='img/personnalite_aout_2013_mini.png' alt='Personnalité' title='Personnalité'><figcaption><br>Personnalité</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*25'><figure class='paysage'><img src='img/poisson_vers_2000_mini.png' alt='Poisson' title='Poisson'><figcaption><br>Poisson</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*26'><figure class='paysage'><img src='img/renard_2009_mini.png' alt='Renard' title='Renard'><figcaption><br>Renard</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*27'><figure class='portrait'><img src='img/rose_floribunda_mars_avril_2012_mini.png' alt='Rose floribunda' title='Rose floribunda'><figcaption><br>Rose floribunda</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*28'><figure class='paysage'><img src='img/rouge_gorge_vers_2000_mini.png' alt='Rouge-gorge' title='Rouge-gorge'><figcaption><br>Rouge-gorge</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*29'><figure class='portait'><img src='img/saint_michel_mars_juin_2011_mini.png' alt='Saint-Michel' title='Saint-Michel'><figcaption><br>Saint-Michel</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*31'><figure class='paysage'><img src='img/tete_de_lionne_2011_mini.png' alt='Tête de lionne' title='Tête de lionne'><figcaption><br>Tête de lionne</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*32'><figure class='paysage'><img src='img/toute_chose_a_une_fin_avril_2012_mini.png' alt='Toute chose a une fin' title='Toute chose a une fin'><figcaption><br>Toute chose a une fin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*33'><figure class='portrait'><img src='img/wolwerine_fevrier_mars_2011_mini.png' alt='Wolverine' title='Wolverine'><figcaption><br>Wolverine</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*34'><figure class='paysage'><img src='img/woman_in_darkness_septembre_2011_mini.png' alt='Woman in darkness' title='Woman in darkness'><figcaption><br>Woman in darkness</figcaption></figure></a>
                    </article>
                    ");
     
    			include("templates/aside.tpl");
    		echo ("
    				</section>
    			");			
     
    			include("templates/footer.tpl");
     
    			echo ("         
    			</div>
        </body>
    </html>
    			");
     
    };
     
    function aff_crayonscire () {
     
    	echo ("
    	<!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Crayons de cire</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
          ");
            include ('templates/header.php'); 
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
           	 echo ("
                <section>
                    <article>
                            <h1>Crayons de cire</h1>
    			<a href='index.php?control=picture.php&f=picture_dos*15'><figure class='paysage'><img src='img/la_vie_et_la_mort_2011_2012_mini.png' alt='La Vie et la Mort' title='La Vie et la Mort'><figcaption><br>La Vie et la Mort</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
     
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_crayonscouleurs () {
     
    	echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Crayons de couleurs</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
    	            <section>
                    <article>
                            <h1>Crayons de couleurs</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*2'><figure class='portrait'><img src='img/chien_domestique_aout_septembre_2009_mini.png'alt='Chien domestique' title='Chien domestique'><figcaption><br>Chien domestique</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*22'><figure class='paysage'><img src='img/origines_3eme_trimestre_2011_mini.png' alt='Origines' title='Origines'><figcaption><br>Origines</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_crayonsaquarelles() {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Crayons de couleurs aquarellables</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
    	            <section>
                    <article>
                            <h1>Crayons de couleurs aquarellables</h1>
    								<a href='index.php?control=picture.php&f=picture_dos*8'><figure class='paysage'><img src='img/l_arc_en_ciel_2011_2012_mini.png' alt='L'arc-en-ciel' title='L'arc-en-ciel'><figcaption><br>L'arc-en-ciel</figcaption></figure></a>
    								<a href='index.php?control=picture.php&f=picture_gen*14'><figure class='paysage'><img src='img/la_porte_demoniaque_juin_2011_mini.png' alt='La Porte démoniaque' title='La Porte démoniaque'><figcaption><br>La Porte démoniaque</figcaption></figure></a>
    								<a href='index.php?control=picture.php&f=picture_gen*18'><figure class='portrait'><img src='img/lion_marin_2009_2010_mini.png' alt='Lion marin' title='Lion marin'><figcaption><br>Lion marin</figcaption></figure></a>
    								<a href='index.php?control=picture.php&f=picture_gen*26'><figure class='paysage'><img src='img/renard_2009_mini.png' alt='Renard' title='Renard'><figcaption><br>Renard</figcaption></figure></a>
    								<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_crayonspapier () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Crayons à papier</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Crayons à papier</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*2'><figure class='portrait'><img src='img/chien_domestique_aout_septembre_2009_mini.png'alt='Chien domestique' title='Chien domestique'><figcaption><br>Chien domestique</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*3'><figure class='paysage'><img src='img/chien_vache_vers_2000_mini.png'alt='Chien-vache' title='Chien-vache'><figcaption><br>Chien-vache</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*4'><figure class='paysage'><img src='img/cygne_vers_2000_mini.png'alt='Cygne' title='Cygne'><figcaption><br>Cygne</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*10'><figure class='paysage'><img src='img/l_homme_est_aveugle_janvier_fevrier_2012_mini.png' alt='L'homme est aveugle' title='L'homme est aveugle'><figcaption><br>L'homme est aveugle</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*14'><figure class='paysage'><img src='img/la_porte_demoniaque_juin_2011_mini.png' alt='La Porte démoniaque' title='La Porte démoniaque'><figcaption><br>La Porte démoniaque</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*17'><figure class='paysage'><img src='img/licorne_2010_mini.png' alt='Licorne' title='Licorne'><figcaption><br>Licorne</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*18'><figure class='portrait'><img src='img/lion_marin_2009_2010_mini.png' alt='Lion marin' title='Lion marin'><figcaption><br>Lion marin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*19'><figure class='paysage'><img src='img/loin_2011_mini.png' alt='Loin' title='Loin'><figcaption><br>Loin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*20'><figure class='portrait'><img src='img/mr_baobab_2011_2012_mini.png' alt='Mr Baobab' title='Mr Baobab'><figcaption><br>Mr Baobab</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*21'><figure class='paysage'><img src='img/narcisse_2009_2010_mini.png' alt='Narcisse' title='Narcisse'><figcaption><br>Narcisse</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*22'><figure class='paysage'><img src='img/origines_3eme_trimestre_2011_mini.png' alt='Origines' title='Origines'><figcaption><br>Origines</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*23'><figure class='paysage'><img src='img/ours_polaire_vers_2000_mini.png' alt='Ours polaire' title='Ours polaire'><figcaption><br>Ours polaire</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*28'><figure class='paysage'><img src='img/rouge_gorge_vers_2000_mini.png' alt='Rouge-gorge' title='Rouge-gorge'><figcaption><br>Rouge-gorge</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*29'><figure class='portait'><img src='img/saint_michel_mars_juin_2011_mini.png' alt='Saint-Michel' title='Saint-Michel'><figcaption><br>Saint-Michel</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*31'><figure class='paysage'><img src='img/tete_de_lionne_2011_mini.png' alt='Tête de lionne' title='Tête de lionne'><figcaption><br>Tête de lionne</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*33'><figure class='portrait'><img src='img/wolwerine_fevrier_mars_2011_mini.png' alt='Wolverine' title='Wolverine'><figcaption><br>Wolverine</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_crayonsfusains () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Crayons fusains</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Crayons fusains</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*29'><figure class='portait'><img src='img/saint_michel_mars_juin_2011_mini.png' alt='Saint-Michel' title='Saint-Michel'><figcaption><br>Saint-Michel</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_encre () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Encre</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Encre</h1>
    			<a href='index.php?control=picture.php&f=picture_dos*9'><figure class='paysage'><img src='img/l_ecologiste_de_l_impossible_2011_2012_mini.png' alt='L'écologiste de l'impossible' title='L'écologiste de l'impossible'><figcaption><br>L'écologiste de l'impossible</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_feutres () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Feutres</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Feutres</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*3'><figure class='paysage'><img src='img/chien_vache_vers_2000_mini.png'alt='Chien-vache' title='Chien-vache'><figcaption><br>Chien-vache</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*25'><figure class='paysage'><img src='img/poisson_vers_2000_mini.png' alt='Poisson' title='Poisson'><figcaption><br>Poisson</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*28'><figure class='paysage'><img src='img/rouge_gorge_vers_2000_mini.png' alt='Rouge-gorge' title='Rouge-gorge'><figcaption><br>Rouge-gorge</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_crayonsgraphites () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Crayons Graphites</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                 <section>
                    <article>
                            <h1>Crayons graphites</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_ordinateur () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Ordinateur</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Ordinateur</h1>
             <a href='index.php?control=picture.php&f=picture_gen*5'><figure class='paysage'><img src='img/dans_l_ombre_18_juillet_2014_mini.png'alt='Dans l'ombre' title='Dans l'ombre'><figcaption><br>Dans l'ombre</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*11'><figure class='portrait'><img src='img/l_oeil_16_juillet___mini.png' alt='L'oeil' title='L'oeil'><figcaption><br>L'oeil</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*12'><figure class='paysage'><img src='img/l_ombre_et_la_lumiere_janvier_2012_mini.png' alt='L'ombre et la lumière' title='L'ombre et la lumière'><figcaption><br>L'ombre et la lumière</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*16'><figure class='paysage'><img src='img/le_mal_est_partout_mars_2012_mini.png' alt='Le mal est partout' title='Le mal est partout'><figcaption><br>Le mal est partout</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*24'><figure class='paysage'><img src='img/personnalite_aout_2013_mini.png' alt='Personnalité' title='Personnalité'><figcaption><br>Personnalité</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_pastels () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Pastels</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Pastels</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*13'><figure class='portrait'><img src='img/la_joconde_de_modigliani_vers_2000_mini.png' alt='La Joconde de MODIGLIANI' title='La Joconde de MODIGLIANI'><figcaption><br>La Joconde de MODIGLIANI</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*21'><figure class='paysage'><img src='img/narcisse_2009_2010_mini.png' alt='Narcisse' title='Narcisse'><figcaption><br>Narcisse</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_pastelsaquarelles () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Pastels aquarellables</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Pastels aquarellables</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*20'><figure class='portrait'><img src='img/mr_baobab_2011_2012_mini.png' alt='Mr Baobab' title='Mr Baobab'><figcaption><br>Mr Baobab</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_pastelshuile () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Pastels à l'huile</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Pastels à l'huile</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*1'><figure class='paysage'><img src='img/abstraction_8_juillet___mini.png'alt='Abstraction' title='Abstraction'><figcaption><br>Abstraction</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_peinture () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Peinture</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Peinture</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*7'><figure class='paysage'><img src='img/essai_de_peinture_2_juillet___mini.png'alt='Essai de peinture' title='Essai de peinture'><figcaption><br>Essai de peinture</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*29'><figure class='portait'><img src='img/saint_michel_mars_juin_2011_mini.png' alt='Saint-Michel' title='Saint-Michel'><figcaption><br>Saint-Michel</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*32'><figure class='paysage'><img src='img/toute_chose_a_une_fin_avril_2012_mini.png' alt='Toute chose a une fin' title='Toute chose a une fin'><figcaption><br>Toute chose a une fin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*34'><figure class='paysage'><img src='img/woman_in_darkness_septembre_2011_mini.png' alt='Woman in darkness' title='Woman in darkness'><figcaption><br>Woman in darkness</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_peintureacryllique () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Peinture acryllique</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Peinture acryllique</h1>
    			<a href='index.php?control=picture.php&f=picture_gen*7'><figure class='paysage'><img src='img/essai_de_peinture_2_juillet___mini.png'alt='Essai de peinture' title='Essai de peinture'><figcaption><br>Essai de peinture</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_dos*32'><figure class='paysage'><img src='img/toute_chose_a_une_fin_avril_2012_mini.png' alt='Toute chose a une fin' title='Toute chose a une fin'><figcaption><br>Toute chose a une fin</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*34'><figure class='paysage'><img src='img/woman_in_darkness_septembre_2011_mini.png' alt='Woman in darkness' title='Woman in darkness'><figcaption><br>Woman in darkness</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    function aff_sanguines () {
     
    		echo ("
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset='utf-8' />
            <link rel='icon' href='favicon.ico' />
            <link type='text/css' rel='stylesheet' href='css/styles/tous.css' />
            <!--[if lt IE 9]>
            <script src='http://html5shiv.googlecode.com/svn/trunk/html5.js'></script>
            <![endif]-->
            <title>ME's Art - Sanguines</title>
        </head>
        
        <!--[if IE 6 ]><body class='ie6 old_ie'><![endif]-->
        <!--[if IE 7 ]><body class='ie7 old_ie'><![endif]-->
        <!--[if IE 8 ]><body class='ie8'><![endif]-->
        <!--[if IE 9 ]><body class='ie9'><![endif]-->
        <!--[if !IE]><!--><body><!--<![endif]-->
            <div id='bloc_page'>
    	");
            include ('templates/header.php');
    /*        if ($_SESSION['c'] == false) {
            		include ('templates/templates/connect.tpl');
           	}
           	else
           		echo (" <h5>vous êtes connecté(e)</h5> "); */
     
    	echo ("
                <section>
                    <article>
                            <h1>Sanguines</h1>
    			<a href='index.php?control=picture.php&f=picture_dos*27'><figure class='portrait'><img src='img/rose_floribunda_mars_avril_2012_mini.png' alt='Rose floribunda' title='Rose floribunda'><figcaption><br>Rose floribunda</figcaption></figure></a>
    			<a href='index.php?control=picture.php&f=picture_gen*30'><figure class='paysage'><img src='img/signatures_juillet_aout___mini.png' alt='Signatures' title='Signatures'><figcaption><br>Signatures</figcaption></figure></a>
                    </article>
    		");
    			include ('templates/aside.tpl'); 
    		echo ("
    				</section>
    		");
     
    			include ('templates/footer.tpl');
     
    		echo ("
    		</div>
    	</body>
    </html>
     	");
     
    };
     
    ?>
    Mon probleme est que en entrant cette URL dans Firefox, il ne m'affiuche rien

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Il faut que tu debroussailles un peu : place des echo aux endroits stratégiques de ton code pour voir ou ca coince.
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  3. #3
    Membre averti
    Avatar de Dumbeldor
    Homme Profil pro
    Développeur Concepteur Banque postale / Ecole d'ingénieur Alternance
    Inscrit en
    Novembre 2013
    Messages
    88
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 28
    Localisation : France, Landes (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Concepteur Banque postale / Ecole d'ingénieur Alternance

    Informations forums :
    Inscription : Novembre 2013
    Messages : 88
    Points : 301
    Points
    301
    Par défaut
    En suivant ton code théoriquement il va bien vers ton echo...
    Donc je peux que te conseiller ce que sabotage t'a dit.

    Après tu peux essayer de faire des echo intermédiaire genre à chaque "étape" tu affiches un "echo "test";".
    Comme ça tu peux voir la ou ton script passe (Lorsque ta page affiche test) et quand tu vois plus le "test" sa veut dire que tu as un soucis. (Je sais pas si tu as bien compris )(En gros tu fais un sort de debugueur, tu suis l'avancement)
    N'oubliez pas de mettre un petit pouce vert si mon message vous a aidé !

  4. #4
    Expert éminent Avatar de CosmoKnacki
    Homme Profil pro
    Justicier interdimensionnel
    Inscrit en
    Mars 2009
    Messages
    2 858
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Charente Maritime (Poitou Charente)

    Informations professionnelles :
    Activité : Justicier interdimensionnel

    Informations forums :
    Inscription : Mars 2009
    Messages : 2 858
    Points : 6 556
    Points
    6 556
    Par défaut
    Je n'ai pas regardé en détail, mais par contre j'ai vu ça en ligne 32 de index.php:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    if (stripos ($f, '*') != false) {
    Attention avec strpos et stripos, tu dois toujours vérifier le type:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    if (stripos ($f, '*') !== false) {
    sinon quand le caractère est en premier position (donc stripos renvoie 0), PHP va automatiquement trans-typer cette valeur 0 en boolean false et considérer que la condition n'est pas satisfaite. Le fait de rajouter un = empêche ce trans-typage et oblige PHP à vérifier que les types des deux opérandes sont bien les mêmes.


    Dans affichage_galleries.php, tu mets systématiquement un ; après les déclarations de fonctions, il ne devrait pas y en avoir.
    Brachygobius xanthozonus
    Ctenobrycon Gymnocorymbus

  5. #5
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2012
    Messages
    335
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2012
    Messages : 335
    Points : 70
    Points
    70
    Par défaut
    Rebonjour,
    J'ai suivi vos conseils
    revoici index.php :
    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
    <?php 
     
    echo "1";
    ini_set ("display_errors", "on");
    error_reporting (E_ALL); 
    echo "2";
     
    session_start ();
    /* $f = $_GET['f']; */
    if (empty  ($_GET['f']) or empty ($_GET['control'])) {
    echo "3";
     
    	$_SESSION ['c'] = false;
    	require_once ("includes/controleur/display.php");
    	principal();
    echo "4";
     
    }
     
    else {
    echo "5";
     
    	$f = $_GET['f'];
     
    	if (file_exists("includes/controleur/" . $_GET['control'])) {
     
    		require_once ("includes/controleur/" . $_GET['control']);
     
    	}
     
    	else {
     
    		echo ("<script> alert('Le fichier n'existe pas'); </script>");
     
    	}
     
    	if (stripos ($f, '*') !== false) {
     
    		$f2 = explode ("*", $f);
    		$n = intval ($f2 ['1']);
    			$_SESSION ['n'] = $n;
    			$f = $f2 [0];
     
    	}
     
    	if (in_array ($f, $functions)) {
     
    		$f ();
     
    	}
     
    	else {
     
    		echo ("<script> alert('La fonction n'existe pas'); </script>");
     
    	}
     
    }
     
    ?>
    mais le résultat est le même.

  6. #6
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Tu n'as même pas le "1" ?
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  7. #7
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2012
    Messages
    335
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2012
    Messages : 335
    Points : 70
    Points
    70
    Par défaut
    Non je n'ai toujours rien!
    j'ai pourtant testé avec le script suivant :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <?php
     
    echo "yo!";
     
    ?>
    et ça marche!

  8. #8
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Tu as des erreurs dans tes logs ?
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  9. #9
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2012
    Messages
    335
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2012
    Messages : 335
    Points : 70
    Points
    70
    Par défaut
    bonsoir,

    excusez-moi j'ai eu une semaine chargée...

    ne sachant pas comment consulter mes logs sous firefox, j'ai tout de même ouvert la console web, qui m'affiche l’erreur suivante:
    L'encodage de caractères du document HTML n'a pas été déclaré. Le document sera affiché avec des caractères incorrects pour certaines configurations de navigateur si le document contient des caractères en dehors de la plage US-ASCII. L'encodage de caractères de la page doit être déclaré dans le document ou dans le protocole de transfert. v4
    sinon j'ai aussi tenté de déplacer mon fichier de test à coté de mon index.php et il marche parfaitement.

  10. #10
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2012
    Messages
    335
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2012
    Messages : 335
    Points : 70
    Points
    70
    Par défaut
    bonjour, merci de votre aide !
    mon père a finalement trouvé : il manquait des droits sur les fichiers de mon site et non sur mon test.php.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 2
    Dernier message: 17/08/2013, 00h23
  2. Pas d'affichage page ASP
    Par qmike dans le forum ASP
    Réponses: 16
    Dernier message: 07/05/2009, 09h23
  3. pas d'affichage dans page web
    Par deny dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 21/06/2008, 20h18
  4. pas d'affichage dans la page web
    Par deny dans le forum Général JavaScript
    Réponses: 11
    Dernier message: 19/06/2008, 10h26
  5. pas d'affichage de page php
    Par lrgtk dans le forum Apache
    Réponses: 2
    Dernier message: 03/02/2008, 17h29

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