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

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

PHP & Base de données Discussion :

phpfreechat affichage de texte


Sujet :

PHP & Base de données

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Futur Membre du Club
    Homme Profil pro
    Enseignant
    Inscrit en
    Avril 2020
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 56
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Avril 2020
    Messages : 2
    Par défaut phpfreechat affichage de texte
    Bonjour,
    Aidez moi svp c'est urgent!
    sur ma page http://conservatoiresdemusique.fr/CHAT/index.html le script version 2 est un peu lent
    avec la version 1.7 http://conservatoiresdemusique.fr/CHAT2/index.php c'est rapide par contre GROS probleme il n'affiche pas le texte
    pouvez vous m'aider svp?

    voici le code du principal fichier

    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
    <?php
    /**
     * phpfreechat.class.php
     *
     * Copyright © 2006 Stephane Gully <stephane.gully@gmail.com>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
     * This library is distributed in the hope that it will be useful, 
     * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details. 
     *
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the
     * Free Software Foundation, 51 Franklin St, Fifth Floor,
     * Boston, MA  02110-1301  USA
     */
     
    require_once dirname(__FILE__).'/pfccommand.class.php';
    require_once dirname(__FILE__).'/pfcglobalconfig.class.php';
    require_once dirname(__FILE__).'/pfcuserconfig.class.php';
    require_once dirname(__FILE__).'/pfctemplate.class.php';
    require_once dirname(__FILE__).'/../lib/utf8/utf8_substr.php';
    require_once dirname(__FILE__).'/pfcresponse.class.php';
     
    /**
     * phpFreeChat is the entry point for developpers
     *
     * @example ../demo/demo1_simple.php
     * @author Stephane Gully <stephane.gully@gmail.com>
     */
    class phpFreeChat
    {
      function phpFreeChat( &$params )
      {
        if (!is_array($params))
          die('phpFreeChat parameters must be an array');
     
        // initialize the global config object
        $c =& pfcGlobalConfig::Instance( $params );
     
        // need to initiate the user config object here because it uses sessions
        $u =& pfcUserConfig::Instance();
     
        // this code is used to handle the AJAX call and build the response
        if (isset($_REQUEST['pfc_ajax']))
        {
          $function = isset($_REQUEST['f']) ? $_REQUEST['f'] : '';
          $cmd      = isset($_REQUEST['cmd']) ? stripslashes($_REQUEST['cmd']) : '';
          $r = null;
          if ($function && method_exists($this,$function))
          {
            require_once dirname(__FILE__).'/pfcresponse.class.php';
            $r =& $this->$function($cmd);
          }
          echo $r->getOutput();
          die();
        }
      }
     
      /**
       * depreciated
       */
      function printJavaScript( $return = false )
      {
        $output = '';
        if ($return)
          return $output;
        else
          echo $output;
      }
     
      /**
       * depreciated
       */
      function printStyle( $return = false )
      {
        $output = '';
        if($return)
          return $output;
        else 
          echo $output;
      }
     
      /**
       * printChat must be called somewhere in the page
       * it inserts necessary html which will receive chat's data
       * usage:
       * <code>
       *   <?php $chat->printChat(); ?>
       * </code>
       */
      function printChat( $return = false )
      {
        $c =& pfcGlobalConfig::Instance();
        $u =& pfcUserConfig::Instance();
     
        $output = '';
     
        if (count($c->getErrors()) > 0)
        {
          $output .= "<p>phpFreeChat cannot be initialized, please correct these errors:</p><ul>";
          foreach( $c->getErrors() as $e ) $output .= "<li>".$e."</li>"; $output .= "</ul>";
        }
        else
        {    
          pfcI18N::SwitchOutputEncoding($c->output_encoding);
     
          $path = $c->getFilePathFromTheme('chat.js.tpl.php');
          $t = new pfcTemplate($path);
          $t->assignObject($u,"u");
          $t->assignObject($c,"c");
          $output .= $t->getOutput();
     
          pfcI18N::SwitchOutputEncoding();
        }
     
        if($return) 
          return $output;
        else 
          echo $output;
      }
     
      /**
       * Encode special caracteres and remove extra slashes
       */
      static function FilterSpecialChar($str)
      {
        return htmlspecialchars($str, ENT_NOQUOTES);
      }
     
      /**
       * Just check the nicknames doesn't start with spaces and is not longer than the max_nick_len
       */
      static function FilterNickname($nickname)
      {
        $c =& pfcGlobalConfig::Instance();
        //$nickname = str_replace("\\", "", $nickname); // '\' is a forbidden charactere for nicknames
        $nickname = trim($nickname);
        $nickname = utf8_substr($nickname, 0, $c->max_nick_len);
        return $nickname;
      }
     
      /**
       * search/replace smileys
       */
      static function FilterSmiley($msg)
      {
        $c =& pfcGlobalConfig::Instance();
        // build a preg_replace array
        $search = array();
        $replace = array();
        $query = "/(";
        foreach($c->smileys as $s_file => $s_strs)
        {
          foreach ($s_strs as $s_str)
          {
            $s_str = stripslashes($s_str); /* the :'( smileys needs this filter */
          	$query .= preg_quote($s_str,'/')."|";
          	$search[] = "/".preg_quote($s_str,'/')."/";
          	$replace[] = '<img src="'.$s_file.'" alt="'.$s_str.'" title="'.$s_str.'" />';
          }
        }
        $query = substr($query, 0, strlen($query)-1);
        $query .= ")/i";
     
        $split_words = preg_split($query, $msg, -1, PREG_SPLIT_DELIM_CAPTURE);
        $msg = "";
        foreach($split_words as $word)
          $msg .= preg_replace($search, $replace, $word);
        return $msg;
      }
     
     
      /**
       * Filter messages before they are sent to container
       */
      static function PreFilterMsg($msg)
      {
        $c =& pfcGlobalConfig::Instance();
        if (preg_match("/^\[/i",$msg))
          // add 25 characteres if the message starts with [ : means there is a bbcode
          $msg = utf8_substr($msg, 0, $c->max_text_len+25);
        else
          $msg = utf8_substr($msg, 0, $c->max_text_len);
        $msg = phpFreeChat::FilterSpecialChar($msg);
     
        //    $msg = phpFreeChat::FilterSmiley($msg);
     
        /*    if ($msg[0] == "\n") $msg = substr($msg, 1); */ // delete the first \n generated by FF
        /* if (strpos($msg,"\n") > 0) $msg  = "<br/>".$msg;
        $msg = str_replace("\r\n", "<br/>", $msg);
        $msg = str_replace("\n", "<br/>", $msg);
        $msg = str_replace("\t", "    ", $msg);*/
        //$msg = str_replace("  ", "&nbsp;&nbsp;", $msg);
        //    $msg = preg_replace('/(http\:\/\/[^\s]*)/i',  "<a href=\"$1\">$1</a>", $msg );
        return $msg;
      }
     
      /**
       * Filter messages when they are recived from container
       */
      static function PostFilterMsg($msg)
      {
        //$c =& pfcGlobalConfig::Instance();
        //    $msg = preg_replace('/('.preg_quote($c->nick,'/').')/i', "<strong>$1</strong>", $msg );
        $msg = preg_replace('/\n/i', "", $msg );
        return $msg;
      }
     
      function &handleRequest($request)
      {
        $c =& pfcGlobalConfig::Instance();
        $u =& pfcUserConfig::Instance();
     
        if ($c->debug) ob_start(); // capture output
     
        $xml_reponse = new pfcResponse();
     
        // check the command
        $cmdstr      = "";
        $cmdname     = "";
        $clientid    = "";
        $recipient   = "";
        $recipientid = "";
        $param       = "";
        $sender      = "";
     
        $res = pfcCommand::ParseCommand($request);
     
        $cmdstr      = isset($res['cmdstr']) ? $res['cmdstr'] : $request;
        $cmdname     = strtolower(isset($res['cmdname']) ? $res['cmdname'] : '');
        $clientid    = isset($res['params'][0]) ? $res['params'][0] : '';
        $recipientid = isset($res['params'][1]) ? $res['params'][1] : "";
        $params      = array_slice(is_array($res['params']) ? $res['params'] : array() ,2);
        $param       = implode(" ",$params); // to keep compatibility (will be removed)
        $sender      = $u->getNickname();
     
        // translate the recipientid to the channel name
        if (isset($u->channels[$recipientid]))
        {
          $recipient = $u->channels[$recipientid]["recipient"];
        }
        if (isset($u->privmsg[$recipientid]))
        {
          $recipient = $u->privmsg[$recipientid]["recipient"];
     
     
          // @todo: move this code in a proxy
          if ($cmdname != "update" &&
              $cmdname != "leave" &&  // do not open the pv tab when other user close the tab
              $cmdname != "quit" &&
    			 $cmdname != "nocensor" &&
              $cmdname != "privmsg2")
          {
            // alert the other from the new pv
            // (warn other user that someone talk to him)
     
            $ct =& pfcContainer::Instance();
            $nickidtopv = $u->privmsg[$recipientid]["pvnickid"];
            $cmdstr = 'privmsg2';
            $cmdp = array();
            $cmdp['param']    = $u->nickid;//$sender;
            $cmdp['params'][] = $u->nickid;//$sender;
            pfcCommand::AppendCmdToPlay($nickidtopv, $cmdstr, $cmdp);
          }
     
        }
     
     
        $cmdp = array();
        $cmdp["clientid"]    = $clientid;
        $cmdp["sender"]      = $sender;
        $cmdp["recipient"]   = $recipient;
        $cmdp["recipientid"] = $recipientid;
        // before playing the wanted command
        // play the found commands into the meta 'cmdtoplay'
        pfcCommand::RunPendingCmdToPlay($u->nickid, $cmdp, $xml_reponse);    
        // play the wanted command
        $cmd =& pfcCommand::Factory($cmdname);
        $cmdp["param"]       = $param;
        $cmdp["params"]      = $params;
        if ($cmd != NULL)
        {
          // call the command
          if ($c->debug)
          	$cmd->run($xml_reponse, $cmdp);
          else
          	@$cmd->run($xml_reponse, $cmdp);
        }
        else
        {
          $cmd =& pfcCommand::Factory("error");
          $cmdp = array();
          $cmdp["clientid"]    = $clientid;
          $cmdp["param"]       = _pfc("Unknown command [%s]",stripslashes("/".$cmdname." ".$param));
          $cmdp["sender"]      = $sender;
          $cmdp["recipient"]   = $recipient;
          $cmdp["recipientid"] = $recipientid;
          if ($c->debug)
            $cmd->run($xml_reponse, $cmdp);
          else
            @$cmd->run($xml_reponse, $cmdp);
        }
     
        // do not update twice
        // do not update when the user just quit
        if ($cmdname != "update" &&
          	$cmdname != "quit" &&
          	$u->nickid != '')
        {
          // force an update just after a command is sent
          // thus the message user just poster is really fastly displayed
          $cmd =& pfcCommand::Factory("update");
          $cmdp = array();
          $cmdp["clientid"]    = $clientid;
          $cmdp["param"]       = $param;
          $cmdp["sender"]      = $sender;
          $cmdp["recipient"]   = $recipient;
          $cmdp["recipientid"] = $recipientid;
          if ($c->debug)
          	$cmd->run($xml_reponse, $cmdp);
          else
          	@$cmd->run($xml_reponse, $cmdp);
        }
     
        if ($c->debug)
        {
          // capture echoed content
          // if a content not empty is captured it is a php error in the code
          $data = ob_get_contents();
          if ($data != "")
          {
            // todo : display the $data somewhere to warn the user
          }
          ob_end_clean();
        }
     
        // do nothing else if the xml response is empty in order to save bandwidth
        if ($xml_reponse->getCommandCount() == 0) die();
     
        return $xml_reponse;
      }
     
     
      function &loadStyles($theme = 'default', &$xml_reponse)
      {
        if ($xml_reponse == null) $xml_reponse = new pfcResponse();
     
        $c =& pfcGlobalConfig::Instance();
     
        // do not overload the theme parameter as long as 
        // the ajax request do not give the correct one
        //    $c->theme = $theme;
     
        $u =& pfcUserConfig::Instance();
     
        $js = '';//file_get_contents(dirname(__FILE__).'/client/createstylerule.js');
        $js .= 'var c = $H();';
        $path = $c->getFilePathFromTheme('style.css.php');
        require_once dirname(__FILE__).'/../lib/ctype/ctype.php'; // to keep compatibility for php without ctype support
        require_once dirname(__FILE__).'/../lib/csstidy-1.2/class.csstidy.php';
        $css = new csstidy();
        $css->set_cfg('preserve_css',false);
     
     
        $css_code = '';
        $t = new pfcTemplate();
        $t->assignObject($u,"u");
        $t->assignObject($c,"c");
        if (!$c->isDefaultFile('style.css.php'))
        {
          $t->setTemplate($c->theme_default_path.'/default/style.css.php');      
          $css_code .= $t->getOutput();
        }
        $t->setTemplate($c->getFilePathFromTheme('style.css.php'));
        $css_code .= $t->getOutput();
     
        $css->parse($css_code);
        foreach($css->css as $k => $v)
        {
          foreach($v as $k2 => $v2)
          {
            $rules = '';
            foreach($v2 as $k3 => $v3)
              $rules .= $k3.':'.$v3.';';
            $js .= "c.set('".$k2."', '".str_replace("\n", "", $rules)."');\n";
          }
        }
        $js .= "var pfccss = new pfcCSS(); var k = c.keys(); c.each(function (a) { pfccss.applyRule(a[0],a[1]); });";
        $xml_reponse->script($js);
     
        return $xml_reponse;
      }
     
      function &loadScripts($theme, &$xml_reponse)
      {
        if ($xml_reponse == null) $xml_reponse = new pfcResponse();
     
        $c =& pfcGlobalConfig::Instance();
     
        $js = '';
     
        // load customize.js.php
        $path = $c->getFilePathFromTheme('customize.js.php');
        $t = new pfcTemplate($path);
        $t->assignObject($c,"c");
        $js .= $t->getOutput();
     
        // load translations
        require_once dirname(__FILE__).'/pfcjson.class.php';
        $json = new pfcJSON();
     
        $labels_to_load =
          array( "Do you really want to leave this room ?", // _pfc
                 "Are you sure you want to close this tab ?", // _pfc
                 "Hide nickname marker", // _pfc
                 "Show nickname marker", // _pfc
                 "Hide dates and hours", // _pfc
                 "Show dates and hours", // _pfc
                 "Disconnect", // _pfc
                 "Connect", // _pfc
                 "Magnify", // _pfc
                 "Cut down", // _pfc
                 "Hide smiley box", // _pfc
                 "Show smiley box", // _pfc
                 "Hide online users box", // _pfc
                 "Show online users box", // _pfc
                 "Please enter your nickname", // _pfc
                 "Private message", // _pfc
                 "Close this tab", // _pfc
                 "Enter your message here", // _pfc
                 "Enter your nickname here", // _pfc
                 "Bold", // _pfc
                 "Italics", // _pfc
                 "Underline", // _pfc
                 "Delete", // _pfc
                 "Mail", // _pfc
                 "Color", // _pfc
                 "PHP FREE CHAT [powered by phpFreeChat-%s]", // _pfc
                 "Enter the text to format", // _pfc
                 "Configuration has been rehashed", // _pfc
                 "A problem occurs during rehash", // _pfc
                 "Chosen nickname is already used", // _pfc
                 "phpfreechat current version is %s", // _pfc
                 "Maximum number of joined channels has been reached", // _pfc
                 "Maximum number of private chat has been reached", // _pfc
                 "Click here to send your message", // _pfc
                 "Send", // _pfc
                 "You are not allowed to speak to yourself", // _pfc
                 "Close", // _pfc
                 "Chosen nickname is not allowed", // _pfc
                 "Enable sound notifications", // _pfc
                 "Disable sound notifications", // _pfc
                 "Input Required", // _pfc
                 "OK", // _pfc
                 "Cancel", // _pfc
                 "You are trying to speak to a unknown (or not connected) user", // _pfc
                 "Sorry %s couldn't be found", // _pfc
                 );
        foreach($labels_to_load as $l)
        {
          $js .= "pfc.res.setLabel(".$json->encode($l).",".$json->encode(_pfc2($l)).");\n";
        }
     
        // load ressources
        $fileurl_to_load =
          array( 'images/ch.gif',
                 'images/pv.gif',
                 'images/tab_remove.gif',
                 'images/ch-active.gif',
                 'images/pv-active.gif',
                 'images/user.gif',
                 'images/user-me.gif',
                 'images/user_female.gif',
                 'images/user_female-me.gif',
                 'images/color-on.gif',
                 'images/color-off.gif',
                 'images/clock-on.gif',
                 'images/clock-off.gif',
                 'images/logout.gif',
                 'images/login.gif',
                 'images/maximize.gif',
                 'images/minimize.gif',
                 'images/smiley-on.gif',
                 'images/smiley-off.gif',
                 'images/online-on.gif',
                 'images/online-off.gif',
                 'images/bt_strong.gif',
                 'images/bt_em.gif',
                 'images/bt_ins.gif',
                 'images/bt_del.gif',
                 'images/bt_mail.gif',
                 'images/bt_color.gif',
                 'images/color_transparent.gif',
                 'images/close-whoisbox.gif',
                 'images/openpv.gif',
                 'images/user-admin.gif',
                 'images/sound-on.gif',
                 'images/sound-off.gif',
                 'sound.swf',       
                 );
     
        foreach($fileurl_to_load as $f)
        {
          $js .= "pfc.res.setFileUrl(".$json->encode($f).",\"".$c->getFileUrlFromTheme($f)."\");\n";
        }
     
        foreach($c->smileys as $s_file => $s_str) { 
          for($j = 0; $j<count($s_str) ; $j++) {
            $js .= "pfc.res.setSmiley(".$json->encode($s_str[$j]).",\"".$c->getFileUrlFromTheme($s_file)."\");\n";
          }
        }
     
        $js .= '
    pfc.gui.loadSmileyBox();
    pfc.gui.loadBBCodeColorList();
    pfc.connectListener();
    pfc.refreshGUI();
    if (pfc_connect_at_startup) pfc.connect_disconnect();
    ';
     
        $xml_reponse->script($js);
        return $xml_reponse;
      }
     
     
      function loadInterface($theme = 'default', &$xml_reponse)
      {
        if ($xml_reponse == null) $xml_reponse = new pfcResponse();
     
        $c =& pfcGlobalConfig::Instance();
     
        // do not overload the theme parameter as long as 
        // the ajax request do not give the correct one
        //    $c->theme = $theme;
     
        $u =& pfcUserConfig::Instance();
     
        $html = '';
     
        //    pfcI18N::SwitchOutputEncoding($c->output_encoding);
     
        $path = $c->getFilePathFromTheme('chat.html.tpl.php');
        $t = new pfcTemplate($path);
        $t->assignObject($u,"u");
        $t->assignObject($c,"c");
        $html .= $t->getOutput();
     
        //    pfcI18N::SwitchOutputEncoding();
     
        $xml_reponse->remove('pfc_loader'); // to hide the loading box
        $xml_reponse->update('pfc_container', $html);
     
        return $xml_reponse;    
      }
     
      function &loadChat($theme = 'default')
      {
        $xml_reponse = new pfcResponse();
     
        $this->loadInterface($theme,$xml_reponse);
        $this->loadStyles($theme,$xml_reponse);
        $this->loadScripts($theme,$xml_reponse);
     
        return $xml_reponse;    
      }
     
    }
     
    ?>
    <config>Windows / Chrome 80.0.3987.149</config>

  2. #2
    Membre éclairé Avatar de solo190
    Homme Profil pro
    Consultant informatique
    Inscrit en
    Avril 2007
    Messages
    412
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Consultant informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 412
    Par défaut
    hello chiapparin,
    je me suis rendu sur ce lien
    http://conservatoiresdemusique.fr/CHAT2/index.php
    il me retourne une erreur 404
    The page you are looking for might have been removed, had its name changed.
    Aide les autres à t'aider .
    A+

Discussions similaires

  1. Réponses: 10
    Dernier message: 08/06/2009, 11h30
  2. Affichage de texte
    Par Yellowmat dans le forum OpenGL
    Réponses: 2
    Dernier message: 15/12/2004, 12h25
  3. [C#] Affichage de texte vertical...
    Par AntiSAL dans le forum Windows Forms
    Réponses: 6
    Dernier message: 10/06/2004, 14h46
  4. Affichage de texte est mise à jour de l'écran
    Par Galdor_sp dans le forum OpenGL
    Réponses: 3
    Dernier message: 14/03/2004, 22h31
  5. [MX 2004] Affichage du texte dynamique
    Par caramel dans le forum Flash
    Réponses: 8
    Dernier message: 29/01/2004, 16h07

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