Bonjours, j'ai un soucy avec mon bbcode.php quand j'insére une image directement a la base sql

je veux insérre cette image

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
<img src="592384BArojafZY" title="" alt="" />

j'ai tester mettre a ma base sql

Code : Sélectionner tout - Visualiser dans une fenêtre à part
<img src="592384BArojafZY" title="" alt="" />
ou
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
&lt;img src=&quot;592384BArojafZY&quot; title=&quot;&quot; alt=&quot;&quot; /&gt;

mais il ne veux pas m'affiché

voilà mon code bbcode.php
Code php : Sélectionner tout - Visualiser dans une fenêtre à part
$texte = preg_replace("#" . htmlspecialchars("<image>(.+)</image>") . "#isU",'<img src="$1" boreder="0" alt="Image utilisateur" title="Image utilisateur" style="max-width:750px; max-height:280px;" />',$texte);


norlement il devrait m'affiché l'image hors il n'affiche pas

voilà ma souce
Code html : 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
<div class="ContenueInfoHaut">
    <div class="ContenueInfoGauche">
        <div class="TitrePaddingBorderBas">
            Information sur l'auteur
        </div>
        <nav>
            <ul class="MenuVertical">
                <li>Auteur : <a href="/membre-profil.html?uname=tester" title=""><span class="admin_color">tester</span></a></li>
            </ul>
        </nav>
        <div class="cadre_avatar_commentaire">
        </div>
        <nav>
            <ul class="MenuVertical">
                <li>Date le 06/12/2014 à 10:19:38</li>
                <li>Mise à jours : </li>
                <li>Cat&eacute;gorie : Word</li>
                <li> Visites 33</li>
            </ul>
        </nav>
    </div>
    <div class="ContenueInfoDroite">
        <img src="<a href="http://hpics.li/b33ba20" target="_blank">http://hpics.li/b33ba20</a>" boreder="0" alt="Image utilisateur" title="Image utilisateur" style="max-width:750px; max-height:280px;" />&amp;lt;img src=&amp;quot;592384BArojafZY&amp;quot; title=&amp;quot;&amp;quot; alt=&amp;quot;&amp;quot; /&amp;gt;&lt;img src=&quot;592384BArojafZY&quot; title=&quot;&quot; alt=&quot;&quot; /&gt;&lt;img src=&quot;592384BArojafZY&quot; title=&quot;&quot; alt=&quot;&quot; /&gt;&lt;img src=&quot;592384BArojafZY&quot; title=&quot;&quot; alt=&quot;&quot; /&gt;
    </div>
</div>
</section>


et voilà ma base sql
Code sql : 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
CREATE TABLE IF NOT EXISTS `liste_cours` (
  `id` int(11) NOT NULL,
  `membre_id` int(11) NOT NULL,
  `titre` varchar(255) COLLATE latin1_bin NOT NULL,
  `contenu` text COLLATE latin1_bin NOT NULL,
  `timestamp` bigint(20) NOT NULL,
  `membre_id_updated` int(11) NOT NULL,
  `timestamp_upd` bigint(20) NOT NULL,
  `type` int(11) NOT NULL,
  `visite` int(11) NOT NULL DEFAULT '0',
  `info` int(255) NOT NULL,
  `image1` varchar(255) COLLATE latin1_bin NOT NULL,
  `image2` varchar(255) COLLATE latin1_bin NOT NULL,
  `image3` varchar(255) COLLATE latin1_bin NOT NULL,
  `image4` varchar(255) COLLATE latin1_bin NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_bin;
 
--
-- Contenu de la table `liste_cours`
--
 
INSERT INTO `liste_cours` (`id`, `membre_id`, `titre`, `contenu`, `timestamp`, `membre_id_updated`, `timestamp_upd`, `type`, `visite`, `info`, `image1`, `image2`, `image3`, `image4`) VALUES
(1, 11, 'word', '<image>http://hpics.li/b33ba20</image>', 1417857578, 1417857578, 0, 1, 33, 0, '&lt;img src=&quot;592384BArojafZY&quot; title=&quot;&quot; alt=&quot;&quot; /&gt;', '<img src="592384BArojafZY" title="" alt="" />', '<img src="592384BArojafZY" title="" alt="" />', '<img src="592384BArojafZY" title="" alt="" />');

merci de me dire pk limage n'affiche pas