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 :

[Système] Programme PHP à expliquer!


Sujet :

Langage PHP

  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 3
    Points : 2
    Points
    2
    Par défaut [Système] Programme PHP à expliquer!
    Bonjour à tous,

    JE suis actuellement en stage et je dois Débuguer une appli en php!
    Le prob c'est que je n'arrive pas à comprendre le code!!!
    Est-ceque quelqu'un pourrait m'aider svp!!
    Voici le code:

    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
     
    $singlePages = array("annual" => "eSites annual evolution",
                        "monthly" => "eSites monthly evolution",
                        "weekly" => "eSites weekly evolution",
                        "alltimeIP" => "annual hits evolution by IPs",
                        "chart" => "annual hits evolution by countries") ;
     
     
    if(isset($_GET["page"]) && array_key_exists($_GET["page"],$singlePages))
    {
      $page = $_GET["page"] ;
      $pageTitle = $singlePages[$page] ;
    }
    else
    {
      header("Location: ../../index.html") ;
     
    $get = array_keys($singlePages) ;// array_keys ( array   input , mixed   search_value , bool   strict )     retourne les clés numériques et littérales du tableau input . 
     
    $values = array_values($singlePages) ;// retourne les valeurs du tableau input et indexe numériquement le tableau
    for($i = 0 ; $i < count($get) ; $i++)// en function du nombre de clés de $singlepages
    {
    ?>
                <tr valign="top">
                  <td width="8" height="2">&nbsp; </td>// pour créer un tableau en HTML
                  <td align="left" width="17" height="33" valign="middle"><img src="../../html/claf/arrow_<? if(isset($page) && $page == $get[$i]) echo "pink" ; else echo "blue" ; ?>.gif" width="14" height="14" vspace="1"></td>
                  <td align="left" width="115" height="33" valign="middle"><a href="single.php?page=<?=$get[$i]?>" class="leftsubmenu"><?=$values[$i]?></a></td>
                </tr>
    <?
    }
    ?>
    if(($page == "chart" && file_exists("../images/pieChart2004.png")) || file_exists("../$page.html"))
    {
      if(!file_exists("../$page.html"))
      {
    ?>
    <i>Last updated : <?=date("l d/m/Y", filemtime("../images/pieChart2004.png"))?></i><br /><br />
    <img src="../images/pieChart2004.png" width="720" height="450" /><br /><br />
    <?
      }
      else
      {
     
    <i>Last updated : <?=date("l d/m/Y", filemtime("../$page.html"))?></i><br /><br />
     
        include("../$page.html") ;
      }
    }
    else
    {
     
              Not yet generated
     
    if(isset($_GET["mode"]) && in_array($_GET["mode"],array("g","f")) && isset($_GET["month"]) && in_array($_GET["month"],range(1,date("n"))))
    {
      $mode = $_GET["mode"] ;
      $month = $_GET["month"] ;
      $weekMin = date("W",mktime(0,0,0,$month,1,2004)) ;
      $weekMax = date("W",mktime(0,0,0,$month+1,0,2004)) + 1 ;
      $modeArray = array("f" => "Figures", "g" => "Graphics") ;
      $pageTitle = $modeArray[$mode]." for ".date("F",mktime(0,0,0,$month,1,2004))." 2004 Statistics" ;
      $plusWeek = "" ;
     
      if(isset($_GET["week"]) && in_array($_GET["week"],range(1,date("W"))))
      {
        $week = $_GET["week"] ;
        $plusWeek .= ", Week $week" ;
        if(in_array($week,range($weekMin,$weekMax)))
        {
          $toIncludeFile = $modeArray[$mode]."Week$week-2004.html" ;
          $toIncludeChart = "pieChartWeek$week-2004.png" ;
        }
        else
        {
          $toIncludeFile = $modeArray[$mode]."Month".sprintf("%02d", $month)."-2004.html" ;
          $toIncludeChart = "pieChartMonth".sprintf("%02d", $month)."-2004.png" ;
        }
      }
      else
      {
        $toIncludeFile = $modeArray[$mode]."Month".sprintf("%02d", $month)."-2004.html" ;
        $toIncludeChart = "pieChartMonth".sprintf("%02d", $month)."-2004.png" ;
      }
    }
    else
    {
      header("Location: ../../index.html") ;
    }
     
    for($i = $weekMin ; $i < $weekMax && in_array($i,range(1,date("W"))) ; $i++)
    {
    ?>
                <tr valign="top">
                  <td width="8" height="2">&nbsp; </td>
                  <td align="left" width="17" height="22" valign="middle"><img src="../../html/claf/arrow_<? if(isset($week) && $i == $week) echo "pink" ; else echo "blue" ; ?>.gif" width="14" height="14" vspace="1"></td>
                  <td align="left" width="115" height="22" valign="middle"><a href="display.php?mode=<?=$mode?>&month=<?=$month?>&week=<?=$i?>" class="leftsubmenu">Week <?=$i?></a></td>
                </tr>
    <?
    if($mode == "f")
    {
      if(file_exists("../$toIncludeFile"))
      {
    ?>
            <span class="titleH2-13softblue"><?=$pageTitle?></span><br /><br />// HTML par rapport au format 
    <?
        if($month == date("n"))
        {
          if(isset($week) && $week == $weekMax)
          {
    ?>
    <i>Last updated : <?=date("l d/m/Y", filemtime("../$toIncludeFile"))?></i><br /><br />
    <?
          }
          else
          {
    ?>
    <i>Last updated : <?=date("l d/m/Y", filemtime("../$toIncludeFile"))?></i><br /><br />
     
     
    <?
          }
        }
    ?>
              <?include("../$toIncludeFile")?>
    <?
      }
      else
      {
    ?>
              Not yet generated
    <?
      }
    }
    else
    {
      if(file_exists("../images/$toIncludeChart"))
      {
        if($month == date("n"))
        {
          if(isset($week) && $week == $weekMax)
          {
    ?>
    <i>Last updated : <?=date("l d/m/Y", filemtime("../images/$toIncludeChart"))?></i><br /><br />
    <?
          }
          else
          {
    ?>
    <i>Last updated : <?=date("l d/m/Y", filemtime("../images/$toIncludeChart"))?></i><br /><br />
    <?
          }
        }
    ?>
              <img src="../images/<?=$toIncludeChart?>" />
    <?
      }
      else
      {
    ?>
              Not yet generated
    <?
      }
    }
    Merci D'avance

  2. #2
    Membre expert
    Avatar de trotters213
    Profil pro
    Inscrit en
    Janvier 2005
    Messages
    2 571
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : France, Gard (Languedoc Roussillon)

    Informations forums :
    Inscription : Janvier 2005
    Messages : 2 571
    Points : 3 145
    Points
    3 145
    Par défaut

    bè la comme ça c'est pas trop sexy.
    Dis nous plus précisément ce que tu ne comprends pas (fonctions, portion de code, ...).

  3. #3
    Candidat au Club
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 3
    Points : 2
    Points
    2
    Par défaut Utilisation de EasyPhp 1.7 !!
    Bonjour,
    Je suis actuellement en stage, je n'ai jamais utilisé le EasyPHP , je travaille sur un code que j'ai un peu modifié sur le notePad++ de nom fich.php et je n'arrive pas à l'exécuter, à savoir que je travaille avec Easyphp 1.7
    Merci

  4. #4
    Membre expert
    Avatar de trotters213
    Profil pro
    Inscrit en
    Janvier 2005
    Messages
    2 571
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : France, Gard (Languedoc Roussillon)

    Informations forums :
    Inscription : Janvier 2005
    Messages : 2 571
    Points : 3 145
    Points
    3 145
    Par défaut
    C'est le code ci-dessus que tu n'arrives pas à éxecuter ?
    Mais ce que j'arrives pas à comprendre c'est qu'il fait bien parti d'un projet ou de quelque chose ce code, il se balade pas tout seul comme ça sur ta machine.
    Tes $_GET font bien référence à quelquechose par exemple.

    On ne peut pas t'expliquer comme ça qu'est-ce que fait ce code, il faut que tu t'en imprègne en force de test et d'utilisation.

  5. #5
    Candidat au Club
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    3
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 3
    Points : 2
    Points
    2
    Par défaut code en php!
    merci pour ta réponse trotters213

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

Discussions similaires

  1. Réponses: 7
    Dernier message: 26/03/2007, 13h17
  2. [Système] Programmer l'excecution d'un script PHP
    Par Landolsi dans le forum Langage
    Réponses: 2
    Dernier message: 09/02/2007, 17h30
  3. Réponses: 3
    Dernier message: 14/12/2006, 12h46
  4. Réponses: 5
    Dernier message: 29/11/2005, 18h35
  5. [Système] recupere resultat d'un programme php
    Par naourass dans le forum Langage
    Réponses: 4
    Dernier message: 25/10/2005, 15h14

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