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 :

Hébergement de mon Site


Sujet :

Langage PHP

  1. #1
    Futur Membre du Club
    Développeur informatique
    Inscrit en
    Novembre 2010
    Messages
    6
    Détails du profil
    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 6
    Points : 5
    Points
    5
    Par défaut Hébergement de mon Site
    Salut tout le monde ;
    j'ai réservé un espace de 250 Mo pour mon site
    j'ai mets mon répertoire dans le serveur et ma base de données , mais
    le site n'affiche pas , et il me montre pas les erreurs
    malgré sur mon Pc , il fonctionne parfaitement
    Merci pour votre attention

  2. #2
    Invité
    Invité(e)
    Par défaut
    Bonjour,
    1/ quelle est la question ?

    2/ comment espères-tu qu'on y réponde sans donner plus de précision (l'URL du site, par exemple...) ?

  3. #3
    Modératrice
    Avatar de Celira
    Femme Profil pro
    Développeuse PHP/Java
    Inscrit en
    Avril 2007
    Messages
    8 633
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 39
    Localisation : France

    Informations professionnelles :
    Activité : Développeuse PHP/Java
    Secteur : Industrie

    Informations forums :
    Inscription : Avril 2007
    Messages : 8 633
    Points : 16 372
    Points
    16 372
    Par défaut
    Avoir des informations sur ton hébergement et sur ta configuration locale pourrait être utile aussi (version de PHP, base de donnée...)
    Modératrice PHP
    Aucun navigateur ne propose d'extension boule-de-cristal : postez votre code et vos messages d'erreurs. (Rappel : "ça ne marche pas" n'est pas un message d'erreur)
    Cherchez un peu avant poser votre question : Cours et Tutoriels PHP - FAQ PHP - PDO une soupe et au lit !.

    Affichez votre code en couleurs : [CODE=php][/CODE] (bouton # de l'éditeur) et [C=php][/C]

  4. #4
    Futur Membre du Club
    Développeur informatique
    Inscrit en
    Novembre 2010
    Messages
    6
    Détails du profil
    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 6
    Points : 5
    Points
    5
    Par défaut
    Salut , voici le code de ma page Index.php

    /////////////////////////////////////

    application/x-httpd-php index.php
    PHP script text

    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
    <?php require_once ('/home/amisoft/public_html/Connections/amisoft.php');?>
    <?php
    mysql_select_db($database_amisoft, $amisoft);
    $query_Recordset1 = "SELECT * FROM cat";
    $Recordset1 = mysql_query($query_Recordset1, $amisoft) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    }
     
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    }
     
    if (isset($_POST['id'])) {
      $loginUsername=$_POST['id'];
      $password=$_POST['password'];
      $MM_fldUserAuthorization = "";
      $MM_redirectLoginSuccess = "op.php";
      $MM_redirectLoginFailed = "index.php";
      $MM_redirecttoReferrer = false;
      mysql_select_db($database_amisoft, $amisoft);
     
      $LoginRS__query=sprintf("SELECT login, password FROM admin WHERE login='%s' AND password='%s'",
        get_magic_quotes_gpc() ? $loginUsername : addslashes($loginUsername), get_magic_quotes_gpc() ? $password : addslashes($password)); 
     
      $LoginRS = mysql_query($LoginRS__query, $amisoft) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
         $loginStrGroup = "";
     
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;	      
     
        if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];	
        }
        header("Location: " . $MM_redirectLoginSuccess );
      }
      else {
        header("Location: ". $MM_redirectLoginFailed );
      }
    }
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>Home</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="layout.css" rel="stylesheet" type="text/css" />
    <link href="style.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .style2 {
    	color: #f44200;
    	font-weight: bold;
    }
    .style3 {color: #f44200}
    .style6 {
    	color: #6699CC;
    	font-weight: bold;
    	font-style: italic;
    }
    .style8 {color: #000000}
    -->
    </style>
    </head>
    <body id="page_1">
    <div class="main">
    <!--==========header=========== -->
    <div class="menu">
      <div align="right"><a href="index.html">
        </a>
        <form id="form12" method="post" action="">
          <div align="left">
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="980" height="135">
              <param name="movie" value="Header.swf" />
              <param name="quality" value="high" />
              <embed src="Header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="980" height="135"></embed>
            </object>
          </div>
        </form>
        <a href="index.html"></a>  </a>  </div>
      <form id="form11" method="post" action="Ami.soft01.fla">
        <a href="index.html">Accueil</a> | <a href="index-1.html">Produits</a> | <a href="index-2.html">Services</a> | <a href="index-3.php">Forum</a> | <a href="index-4.php">Contacts | <a href="index-4.html"></a><a href="Pub.php">Publicité</a></a><a href="index-1.html"></a><a href="index-2.html"></a><a href="index-3.php"></a><a href="index-4.php"></a>
      </form>
     
     
      </div>
    <!--========//header=========== -->
    <!-- -->
    <!--==========content=========== -->
    <div id="content">
      <form id="form10" method="post" action="">
        <div align="right">
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="900" height="300">
              <param name="movie" value="Pré-Accueil01.swf" />
              <param name="quality" value="high" />
              <embed src="Pré-Accueil01.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="300"></embed>
            </object>
          </p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
          <p align="center">&nbsp;</p>
        </div>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p><span class="style2">@mi.Soft</span>  est LA solution pour répondre à vos besoins  et réaliser concrètement ce que votre imagination voudrait. Ceci par le biais d’un  Système d’Information (S.I)  apte à  faciliter et simplifier la circulation de l’information au sein de votre  entreprise.<br />
          Vous avez une entreprise, un  organisme dont les difficultés vous paraissent insurmontables&nbsp;? Budget ,  Paie , Facturation , Suivi des Opération   , Comptabilité Générale ou Analytique, Publicité et Marketing …. Un casse  tête&nbsp;pour vous? <span class="style2">@mi.Soft</span> en est la réponse. <span class="style6">ET TOUT DEVIENT FACILE</span> . </p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
      </form>
      <form id="form13" method="post" action="">
      </form>
      <div class="container">
    <div class="col_1">
      <div class="block_1">
        <div class="bot">
          <div class="left">
            <div class="right">
              <div class="left_top">
                <div class="right_top">
                  <div class="left_bot">
                    <div class="right_bot"> <img src="images/page_1_title_1.gif" class="title" alt="" />
                      <div class="block_2">
                        <div class="right_top">
                          <div class="left_bot">
                            <div class="right_bot">
                              <form id="form1" method="POST" action="<?php echo $loginFormAction; ?>">
                                <label>
                                <div align="right">
                                  <label>User
                                  <input name="id" type="password" id="id" value=""<?php echo $row_Recordset1['id']; ?>"  />
                                  <br />
                                  </label>
                                  <div align="right">
                                    <p>PassWord
                                      <input name="password" type="password" id="password" value=""<?php echo $row_Recordset1['password']; ?>>
     </p>
                                    <p>
                                      <input type="submit" name="Submit" value="Se Connecter" />                               
                                        </p>
                                  </div>
                                  <label>                              </label>
    </div>
                                </label>
                                    </form>
                              <form id="form2" method="post" action="">
                                <label>
                                </label>
                              </form>
                              <form id="form3" method="post" action="">
                                <div align="right">
                                  <label></label>
                                </div>
                              </form>
                              <a href="#" class="bot">J'ai oublier le mot de passe ? </a>
                              <form id="form7" method="post" action="">
                                Mail
                                <input type="text" name="textfield" />
                                <input type="submit" name="Submit2" value="Go" />
                              </form>
                              </div>
                          </div>
                        </div>
                        <div class="block_2">
                          <div class="right_top">
                            <div class="left_bot">
                              <div class="right_bot">
                                <div class="container">
                                   <div class="box_1"><img src="FlashImages/images10.jpg" width="151" height="185" /></div>
                                  </div>
                                <div align="left"><em class="block style3">Collection d'Anti-Virus :  </em> Nous Posséde une collection d'Anti-virus à fin de protéger votre machine sous licence ... <a href="#" class="link_2 top_indent_10px">Achetez</a>                            </div>
                                <form id="form6" method="post" action="">
                                </form>
                                </div>
                            </div>
                          </div>
                          <div class="right_top">
                            <div class="left_bot">
                              <div class="right_bot">
                                <div class="container">
                                  <div class="box_1"><img src="FlashImages/images7.jpg" width="200" height="228" /></div>
                                  </div>
                                 <em class="block style3">Produits Micro-Soft </em> Nous Posséde toute les gammes de Micro-Soft sous licence ... tel que : Windows xp,7,8 et l'office 2003,2007;2010,2013 <a href="#" class="link_2 top_indent_10px">Achetez</a>
                                 <form id="form6" method="post" action="">
                                </form>
                              </div>
                            </div>
                          </div>
                          <div class="block_2">
                            <div class="block_2">
                              <div class="right_top">
                                <div class="left_bot">
                                  <div class="right_bot">
                                    <div class="container">
                                      <div class="box_1"><img src="FlashImages/indexventes.jpg" width="218" height="155" /></div>
                                    </div>
                                    <div align="left"><em class="block style3">Ventes : </em> Nous Posséde une collection d'Anti-virus à fin de protéger votre machine sous licence ... <a href="#" class="link_2 top_indent_10px">Achetez</a> </div>
                                    <form id="form6" method="post" action="">
                                    </form>
                                  </div>
                                </div>
                              </div>
                              <div class="right_top">
                                <div class="left_bot">
                                  <div class="right_bot"></div>
                                </div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                      </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="mid">&nbsp;
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
    </div>
        <div class="col_2">
    <div class="container">
                	<p><img src="FlashImages/4626-istock-000009323496xsmall-s-.png" width="155" height="180" class="pic_float_2" />
                        <em class="block style3">Developpement des Logiciels de Gestion , Création et Hébergement des Sites Web </em>Notre Boutique à pour but le développement des Logiciels de Gestion tel que : La Paie , Comptabilité , GestionCarrieères , Gestion du Personnel , suivi des projets .... toute Gestion , @mi.soft est là des logiciels sur mesure pour vos besoins </p>
                	<p>En plus Notre Boutique est , spécialisée dans la conception de sites internet, répond  aux besoins modernes de communication et vous propose des sites  dynamiques avec des interfaces de gestion claires et simples  d'utilisation pour mettre à jour vos données et même l'hébergement de vos site </p>
           	</div>
                <div class="line_x"></div>
              <div class="container">
                	<div align="center"><img src="FlashImages/imagesrep.jpg" width="80" height="114" class="pic_float" />
                <em class="block style3">Maintenance de Tous Matériels Informatique y compris la récupération des Données Perdus<img src="FlashImages/images47.jpg" alt="03" width="88" height="85" align="absmiddle" usemap="#Map" /></em><em class="block style3">
                <map name="Map" id="Map">
                  <area shape="circle" coords="21,47,0" href="#" alt="" />
                </map>
                </em> Si vos données sont disparus , votre machine ne fonctionne pas ? vous êtes dans une situation facheuse ! n'inquiéte pas , @mi.soft à toujours la solution qui convient , grace à des logiciels de récupération de vos données , et notre compétences et expériences qui sont met en route à fin de sauver votre Soft ware et Hard Ware . </div>
              </div>
                <div class="line_x"></div>
               <div class="container">
                	<p><img src="FlashImages/imagesntyjre.jpg" alt="11" width="393" height="101" /></p>
                	<p><em class="block style3">Etablissement des SI Selon un Model Conceptuel Adéquat </em>                    
                    Selon la circulation de vos Documents et vos informations , on utilisant une Méthode de Gestion et Organisationelle , et mettre en route votre besoins à fin d'Automatiser votre S.I avec notre équipe vous utilisez le Stylo jo=uste pour la Signature . </p>
           	</div>            
        </div>
        <form id="form9" method="post" action="">
        </form>
        <div class="col_3">
        	<div class="block_3">
           	  <div class="bot">
               	<div class="left">
               	  <div class="right">
                   	<div class="left_top">
                            	<div class="right_top">
                                	<div class="left_bot">
                                    	<div class="right_bot">
                                    	  <div class="indent">
                                    	    <p class="style2"><img src="FlashImages/indexwww.jpg" alt="5" width="217" height="65" /></p>
                                    	    <p class="style2">Vous avez besoin d'une Publicité ? 
                                    	    </p>
                                    	    <p class="top_indent_5px">@mi.soft a un site publicitaire , qui va vous servir</p>
                                    	    <div align="left"></div>
                                    	    <table width="224" border="1">
                                              <tr>
                                                <th width="42" bgcolor="#CCFF33" scope="col"><div align="center"><span class="style8">Nbre Année</span></div></th>
                                                <th width="61" bgcolor="#CCFF33" scope="col"><div align="center"><span class="style8">Prix HTTC (DA) par Année </span></div></th>
                                                <th width="99" bgcolor="#CCFF33" scope="col"><div align="center"><span class="style8">Observations</span></div></th>
                                              </tr>
                                              <tr>
                                                <th scope="row"><div align="center">01</div></th>
                                                <td><div align="center"><strong>4.320</strong></div></td>
                                                <td><div align="center">12 DA par Jour </div></td>
                                              </tr>
                                              <tr>
                                                <th scope="row"><div align="center">02</div></th>
                                                <td><div align="center"><strong>7.920</strong></div></td>
                                                <td><div align="center">11 DA par Jour</div></td>
                                              </tr>
                                              <tr>
                                                <th scope="row"><div align="center">03</div></th>
                                                <td><div align="center"><strong>10.800</strong></div></td>
                                                <td><div align="center">10 DA par Jour</div></td>
                                              </tr>
                                              <tr>
                                                <th scope="row"><div align="center">04</div></th>
                                                <td><div align="center"><strong>12.960</strong></div></td>
                                                <td><div align="center">9 DA par Jour</div></td>
                                              </tr>
                                              <tr>
                                                <th scope="row"><div align="center">05</div></th>
                                                <td><div align="center"><strong>14.400</strong></div></td>
                                                <td><div align="center">8 DA par Jour</div></td>
                                              </tr>
                                            </table>
                                    	    <table width="224" border="1">
                                              <tr>
                                                <th width="44" bgcolor="#66CCFF" scope="row"><div align="center">10</div></th>
                                                <td width="43" bgcolor="#66CCFF"><div align="center"><strong>18.000</strong></div></td>
                                                <td width="115" bgcolor="#66CCFF"><div align="center">5 DA par Jour</div></td>
                                              </tr>
                                            </table>
                                    	    <table width="224" border="1">
                                              <tr>
                                                <th width="44" bgcolor="#CCFF66" scope="row"><div align="center">Ilimité</div></th>
                                                <td width="43" bgcolor="#CCFF66"><div align="center"><strong>35.000</strong></div></td>
                                                <td width="115" bgcolor="#CCFF66"><div align="center">Ilimité</div></td>
                                              </tr>
                                            </table>
                                    	    <p>&nbsp;</p>
                                    	    <p>&nbsp;</p>
                                    	    <p class="top_indent_5px">&nbsp; </p>
                                    	  </div>
                                        </div>
                                    </div>
                                </div>
                    </div>
                  </div>
                </div>
              </div>
              <form id="form8" method="post" action="">
                                            <p>&nbsp;</p>
                                            <p><strong>Installation Réseaux et Fibres Optiques:</strong> </p>
                                            <div class="indent">
                                              <p><img src="FlashImages/indexre.jpg" alt="01" width="237" height="143" /></p>
                                              <p class="top_indent_5px">Doloremque laudantium, tperiam, eue ipsa quae <a href="#">ab illontore veritatis</a> easi archecto beatatae.</p>
                </div>
                                            <p>&nbsp;</p>
                                            <p><strong>TéléSurvaillance :</strong></p>
                                            <div class="indent">
                                              <p><img src="FlashImages/indextéle.jpg" alt="02" width="273" height="136" /></p>
                                              <p>&nbsp;</p>
                                              <p class="top_indent_5px">Doloremque laudantium, tperiam, eue ipsa quae <a href="#">ab illontore veritatis</a> easi archecto beatatae.</p>
                </div>
                                            <p>&nbsp;</p>
                                            <p>
                                              <label>
     
                                              <div align="left">
                                                <input type="image" name="imageField2" src="images/@mi.picto-twitter-36x39.png" />
                                                <a href="https://twitter.com/amisoft_ski">https://twitter.com/amisoft_ski</a>
                                                <input name="imageField3" type="image" src="images/@mi.picto-facebook-36x39.png" align="left" />
                                                <a href="http://www.facebook.com/pages/amisoft/475756492460165?skip_nax_wizard=true">http://www.facebook.com/pages/amisoft/475756492460165?skip_nax_wizard=true</a>
                                              </div>
                                              </label>
                                            </p>
              </form>
          </div>
            <a href="#"></a></div>
      </div>
      <form id="form4" method="post" action="">
        <div id="wrapper">
          <div class="slider-wrapper theme-pascal">
            <div style="background: transparent url(/Img_slideshow/img_site_effet.jpg) no-repeat scroll 0% 0%; position: relative; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" id="slider" class="nivoSlider"> <img style="display: none;" src="Cr%C3%A9ation%20de%20Sites%20internet,%20D%C3%A9pannage%20informatique,%20Logiciels%20de%20gestion%20%20_%20%20CADI_fichiers/img_site_effet.jpg" alt="" title="Des graphismes sur mesure." /> <img style="display: none;" src="Cr%C3%A9ation%20de%20Sites%20internet,%20D%C3%A9pannage%20informatique,%20Logiciels%20de%20gestion%20%20_%20%20CADI_fichiers/video_photo_hd.jpg" alt="" title="Studio Vidéos - Photos en Haute Définition." /> <img style="display: none;" src="Cr%C3%A9ation%20de%20Sites%20internet,%20D%C3%A9pannage%20informatique,%20Logiciels%20de%20gestion%20%20_%20%20CADI_fichiers/interface.jpg" alt="" title="Interfaces d'administration claires et très simples d'utilisation." /> <img style="display: none;" src="Cr%C3%A9ation%20de%20Sites%20internet,%20D%C3%A9pannage%20informatique,%20Logiciels%20de%20gestion%20%20_%20%20CADI_fichiers/script.jpg" alt="" title="Des scripts toujours à la pointe de la technologie." />
                <div style="opacity: 0.8;" class="nivo-caption">
                  <p align="center" style="display: block;">
                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="896" height="82">
                      <param name="flash_component" value="ImageViewer.swc" />
                      <param name="movie" value="pub/frise.swf" />
                      <param name="quality" value="high" />
                      <param name="FlashVars" value="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showControls:true,frameShow:false,slideDelay:5,captionSize:10,captionColor:#333333,titleSize:10,transitionsType:'Random',titleColor:#333333,slideAutoPlay:false,imageURLs:['img1.jpg','img2.jpg','img3.jpg'],slideLoop:false,frameThickness:2,imageLinks:['http://macromedia.com/','http://macromedia.com/','http://macromedia.com/'],frameColor:#333333,bgColor:#FFFFFF,imageCaptions:[]}" />
                      <embed src="pub/frise.swf" quality="high" flashvars="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showControls:true,frameShow:false,slideDelay:5,captionSize:10,captionColor:#333333,titleSize:10,transitionsType:'Random',titleColor:#333333,slideAutoPlay:false,imageURLs:['img1.jpg','img2.jpg','img3.jpg'],slideLoop:false,frameThickness:2,imageLinks:['http://macromedia.com/','http://macromedia.com/','http://macromedia.com/'],frameColor:#333333,bgColor:#FFFFFF,imageCaptions:[]}" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="896" height="82"> </embed>
                    </object>
                  </p>
              </div>
              <div style="display: none;" class="nivo-directionNav"><a class="nivo-prevNav">Prev</a><a class="nivo-nextNav">Next</a></div>
              <div class="nivo-controlNav"></div>
            </div>
          </div>
        </div>
      </form>
      <form id="form5" method="post" action="">
        <div align="center">
          <p>&nbsp;</p>
          <p>&nbsp;</p>
        </div>
      </form>
      <div align="right"><a href="#"></a></div>
    </div>
    <!--========//content=========== -->
    <!-- -->
    <!--==========footer=========== -->
    <div id="footer">
    	<div align="left"><span> @mi.soft &nbsp;Fondée en &nbsp; 2012 |BET de Conseil Informatique<a href="index-5.html"></a></span>  <a href="index.html">Accueil</a> | <a href="index-1.html">Produits</a> | <a href="index-2.html">Services</a> | <a href="index-3.php">Forum</a>| <a href="index-4.php">Contacts </a>| <a href="Pub.php">Publicité</a></div>
    </div>
    <!--========//footer=========== -->
    </div>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    ////////////////////////////////////////
    et mon adresse IP: 217.70.34.133

Discussions similaires

  1. Hébergement de mon site sur mon serveur
    Par haddouti dans le forum Hébergement
    Réponses: 0
    Dernier message: 28/01/2012, 13h25
  2. Hébergement de mon site
    Par onedinet dans le forum ASP.NET
    Réponses: 4
    Dernier message: 01/06/2010, 12h57
  3. Hébergement de mon site
    Par tchaw dans le forum Hébergement
    Réponses: 1
    Dernier message: 21/12/2009, 12h35
  4. Hébergement : tester mon site en ligne
    Par outland42 dans le forum PHP & Base de données
    Réponses: 7
    Dernier message: 28/05/2009, 07h40

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