Se connecter avec
S'enregistrer | Connectez-vous

[RESOLU] Couleur de texte dans un block nuked clan

Dernière réponse : dans Programmation

Bonjour !

Je possède un site avec le thème dalto_insane de nuked klan et j'aimerais mettre l'IP de mon serveur par dessus une image. J'ai réussi, seulement j'aimerais mettre ce texte en blanc, et je me perd un peu dans le PHP de ce fichier... Voici le code, l'IP est ligne 48 :

  1. <?php
  2.  
  3. function top()
  4. {
  5. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $nuked, $op, $req;
  6. echo" <html><head>";
  7. echo" <meta name=\"keywords\" lang=\"fr\" content=\"$nuked[keyword]\">
  8. <meta name=\"Description\" content=\"$nuked[description]\">";
  9. echo" <title>$nuked[name] :: $nuked[slogan] ::</title>";
  10. echo" <meta http-equiv=\"content-style-type\" content=\"text/css\">
  11. <link title=\"style\" type=\"text/css\" rel=\"stylesheet\" href=\"themes/dalto_insane/style.css\">";
  12. echo"
  13. <!--
  14. ########################################################
  15. ## ##
  16. ## Theme dalto_insane ##
  17. ## ##
  18. ## Design et PHP by D@LtO (<a href="http://claclac.free.fr" target="_blank">http://claclac.free.fr</a>) ##
  19. ## ##
  20. ## ##
  21. ## Nuked Klan (<a href="http://www.nuked-klan.org" target="_blank">www.nuked-klan.org</a>) ##
  22. ## ##
  23. ########################################################
  24. -->";
  25. echo" </head>
  26. <body>";
  27. include ("themes/dalto_insane/blok/block.php");
  28. echo" <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  29. <tr>
  30. <td background=\"themes/dalto_insane/images/header/header.jpg\" width=\"1000\" height=\"252\">
  31. <object type=\"application/x-shockwave-flash\" data=\"themes/dalto_insane/flash/header.swf\" width=\"1000\" height=\"252\">
  32. <param name=\"movie\" value=\"themes/dalto_insane/flash/header.swf\" />
  33. <param name=\"quality\" value=\"best\" />
  34. <param name=\"pluginurl\" value=\"<a href="http://www.macromedia.com/go/getflashplayer" target="_blank">http://www.macromedia.com/go/getflashplayer</a>\" />
  35. <param name=\"flashvars\" value=\"team=$nuked[name]\">
  36. </object>
  37. </td>
  38. </tr>
  39. </table>
  40. <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  41. <tr>
  42. <td background=\"themes/dalto_insane/images/header/header_teamg.jpg\" width=68 height=73></td>
  43. <td background=\"themes/dalto_insane/images/header/header_team.jpg\" width=144 height=73>
  44. <MARQUEE behavior=\"scroll\" align=\"center\" direction=\"up\" height=\"50\" scrollamount=\"1\" scrolldelay=\"10\" onmouseover='this.stop()' onmouseout='this.start()'><font class=\"team\">";
  45. include("themes/dalto_insane/blok/team.php");
  46. echo" </font></MARQUEE>
  47. </td>
  48. <td background=\"themes/dalto_insane/images/header/header_menu.jpg\" width=575 height=73><center><br /><h2>194.105.152.227:27015</h2></center></td>
  49. <td background=\"themes/dalto_insane/images/header/header_sponsors.jpg\" width=144 height=73>
  50. <MARQUEE behavior=\"scroll\" align=\"center\" direction=\"up\" height=\"50\" scrollamount=\"1\" scrolldelay=\"10\" onmouseover='this.stop()' onmouseout='this.start()'>";
  51. include("themes/dalto_insane/blok/sponsors.html");
  52. echo" </MARQUEE>
  53. </td>
  54. <td background=\"themes/dalto_insane/images/header/header_sponsorsd.jpg\" width=69 height=73></td>
  55. </tr>
  56. </table>
  57. <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  58. <tr>
  59. <td background=\"themes/dalto_insane/images/header/header_unikg.jpg\" width=222 height=18></td>
  60. <td background=\"themes/dalto_insane/images/header/header_uniktitre.jpg\" width=556 height=18></td>
  61. <td background=\"themes/dalto_insane/images/header/header_unikd.jpg\" width=222 height=18></td>
  62. </tr>
  63. </table>";
  64. echo" <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  65. <tr>
  66. <td width=\"60\" background=\"themes/dalto_insane/images/barre/barre_g.jpg\" valign=\"top\"></td>
  67. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_sous.jpg\" valign=\"top\">";
  68. get_blok('gauche');
  69. echo" </td>
  70. <td width=\"556\" background=\"themes/dalto_insane/images/news/news_sous.jpg\" valign=\"top\">
  71. <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  72. <tr>
  73. <td width=\"556\" background=\"themes/dalto_insane/images/news/news_unik.jpg\" height=\"120\">
  74. <object type=\"application/x-shockwave-flash\" data=\"themes/dalto_insane/flash/unik.swf\" width=\"556\" height=\"120\">
  75. <param name=\"movie\" value=\"themes/dalto_insane/flash/unik.swf\" />
  76. <param name=\"quality\" value=\"best\" />
  77. <param name=\"pluginurl\" value=\"<a href="http://www.macromedia.com/go/getflashplayer" target="_blank">http://www.macromedia.com/go/getflashplayer</a>\" />
  78. <param name=\"flashvars\" value=\"";
  79. lastnewstitre();
  80. lastnewsdate();
  81. warsit();
  82. echo" \">
  83. </object>
  84. </td>
  85. </tr>
  86. </table>";
  87. if($op==index){get_blok('centre');}
  88. else if($req==index){get_blok('centre');}
  89. }
  90.  
  91.  
  92. function footer()
  93. {
  94. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $nuked;
  95. get_blok('bas');
  96. echo" </td>";
  97. echo" <td width=\"162\" background=\"themes/dalto_insane/images/d/d_sous.jpg\" valign=\"top\">";
  98. get_blok('droite');
  99. echo" </td>
  100. <td width=\"60\" background=\"themes/dalto_insane/images/barre/barre_d.jpg\" valign=\"top\"></td>
  101. </tr>";
  102. echo" </table>";
  103. echo" <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  104. <tr>
  105. <td background=\"themes/dalto_insane/images/footer/footer_haut.jpg\" width=\"1000\" height=\"142\"></td>
  106. </tr>
  107. <tr>
  108. <td background=\"themes/dalto_insane/images/footer/footer_milieu.jpg\" width=\"1000\" height=\"31\" align=\"center\"><font class=\"commentaires\"><b>Design and Php By <a href=\"<a href="http://claclac.free.fr" target="_blank">http://claclac.free.fr</a>\" target=\"_blank\">D@LtO</a> - powered by <a href=\"<a href="http://nuked-klan.org" target="_blank">http://nuked-klan.org</a>\" target=\"_blank\">nuked-klan</b></font></td>
  109. </tr>
  110. <tr>
  111. <td background=\"themes/dalto_insane/images/footer/footer_bas.jpg\" width=\"1000\" height=\"50\"></td>
  112. </tr>
  113. </table>
  114. </body>
  115. </html>";
  116. }
  117.  
  118. function news($data)
  119. {
  120. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  121. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  122. <tr>
  123. <td background=\"themes/dalto_insane/images/news/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\"><font class=\"titrenews\">$data[titre]</font></td>
  124. </tr>
  125. </table>
  126. <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" background=\"themes/dalto_insane/images/news/news_milieu.jpg\">
  127. <tr>
  128. <td width=\"62\" valign=\"top\">
  129. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  130. <tr>
  131. <td background=\"themes/dalto_insane/images/news/news_imghaut.jpg\" width=\"62\" height=\"9\"></td>
  132. </tr>
  133. </table>
  134. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  135. <tr>
  136. <td width=\"7\" background=\"themes/dalto_insane/images/news/news_imgg.jpg\" width=\"7\" height=\"50\"></td>
  137. <td width=\"50\" background=\"themes/dalto_insane/images/news/news_img.jpg\" width=\"50\" height=\"50\" align=\"center\">$data[image]</td>
  138. <td width=\"5\" background=\"themes/dalto_insane/images/news/news_imgd.jpg\" width=\"5\" height=\"50\"></td>
  139. </tr>
  140. </table>
  141. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  142. <tr>
  143. <td background=\"themes/dalto_insane/images/news/news_imgbas.jpg\" width=\"62\" height=\"35\"></td>
  144. </tr>
  145. </table>
  146. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  147. <tr>
  148. <td background=\"themes/dalto_insane/images/news/news_imgsous.jpg\" width=\"62\"></td>
  149. </tr>
  150. </table>
  151. </td>
  152. <td width=\"494\">
  153. <table width=\"494\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  154. <tr>
  155. <td background=\"themes/dalto_insane/images/news/news_soustitre.jpg\" width=\"494\" height=\"9\"></td>
  156. </tr>
  157. </table>
  158. <table width=\"494\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  159. <tr>
  160. <td width=\"15\" background=\"themes/dalto_insane/images/news/news_postg.jpg\" width=\"15\" height=\"15\"></td>
  161. <td width=\"479\" background=\"themes/dalto_insane/images/news/news_post.jpg\" width=\"479\" height=\"15\"><b>By <a href=\"index.php?file=Members&op=detail&autor=$data[auteur]\">$data[auteur]</a>, le $data[date] à $data[heure]</b> -- <a href=\"index.php?file=News&op=index_comment&news_id=$data[id]\">
  162. Coms ($data[nb_comment])</a></td>
  163. </tr>
  164. </table>
  165. <table width=\"494\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  166. <tr>
  167. <td background=\"themes/dalto_insane/images/news/news_souspost.jpg\" width=\"494\" height=\"11\"></td>
  168. </tr>
  169. <tr>
  170. <td width=\"494\">
  171. <table>
  172. <tr>
  173. <td width=\"4\"></td>
  174. <td width=\"490\">$data[texte]</td>
  175. </tr>
  176. </table>
  177. </td>
  178. </tr>
  179. </table>
  180. </td>
  181. </tr>
  182. </table>
  183. <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  184. <tr>
  185. <td background=\"themes/dalto_insane/images/news/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  186. </tr>
  187. </table>";
  188. }
  189.  
  190.  
  191. function block_gauche($block)
  192. {
  193. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  194. echo" <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  195. <tr>
  196. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_titre.jpg\" height=\"17\" align=\"center\"><font class=\"titreblok\"><b>$block[titre]</b></font></td>
  197. </tr>
  198. <tr>
  199. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_soustitre.jpg\" height=\"15\" align=\"center\"></td>
  200. </tr>
  201. <tr>
  202. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_milieu.jpg\">
  203. <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  204. <tr>
  205. <td width=\"2\"></td>
  206. <td width=\"158\">$block[content]</td>
  207. <td width=\"2\"></td>
  208. </tr>
  209. </table>
  210. </td>
  211. </tr>
  212. <tr>
  213. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_bas.jpg\" height=\"23\"></td>
  214. </tr>
  215. </table>";
  216. }
  217.  
  218.  
  219. function block_droite($block)
  220. {
  221. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  222. echo" <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  223. <tr>
  224. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_titre.jpg\" height=\"17\" align=\"center\"><font class=\"titreblok\"><b>$block[titre]</b></font></td>
  225. </tr>
  226. <tr>
  227. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_soustitre.jpg\" height=\"15\" align=\"center\"></td>
  228. </tr>
  229. <tr>
  230. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_milieu.jpg\">
  231. <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  232. <tr>
  233. <td width=\"2\"></td>
  234. <td width=\"158\">$block[content]</td>
  235. <td width=\"2\"></td>
  236. </tr>
  237. </table>
  238. </td>
  239. </tr>
  240. <tr>
  241. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_bas.jpg\" height=\"23\"></td>
  242. </tr>
  243. </table>";
  244. }
  245.  
  246.  
  247. function block_centre($block)
  248. {
  249. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  250. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  251. <tr>
  252. <td background=\"themes/dalto_insane/images/news/forum/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\">$block[titre]</td>
  253. </tr>
  254. <tr>
  255. <td background=\"themes/dalto_insane/images/news/forum/news_soustitre.jpg\" width=\"556\" height=\"9\" align=\"center\"></td>
  256. </tr>
  257. <tr>
  258. <td background=\"themes/dalto_insane/images/news/forum/news_post.jpg\" width=\"556\" height=\"15\" align=\"center\"></td>
  259. </tr>
  260. <tr>
  261. <td background=\"themes/dalto_insane/images/news/forum/news_souspost.jpg\" width=\"556\" height=\"11\" align=\"center\"></td>
  262. </tr>
  263. <tr>
  264. <td background=\"themes/dalto_insane/images/news/forum/news_milieu.jpg\" width=\"556\">
  265. <table>
  266. <tr>
  267. <td width=\"1\"></td>
  268. <td width=\"554\" align=\"center\">$block[content]</td>
  269. <td width=\"1\"></td>
  270. </tr>
  271. </table>
  272. </td>
  273. </tr>
  274. <tr>
  275. <td background=\"themes/dalto_insane/images/news/forum/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  276. </tr>
  277. </table>";
  278. }
  279.  
  280.  
  281. function block_bas($block)
  282. {
  283. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  284. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  285. <tr>
  286. <td background=\"themes/dalto_insane/images/news/forum/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\">$block[titre]</td>
  287. </tr>
  288. <tr>
  289. <td background=\"themes/dalto_insane/images/news/forum/news_soustitre.jpg\" width=\"556\" height=\"9\" align=\"center\"></td>
  290. </tr>
  291. <tr>
  292. <td background=\"themes/dalto_insane/images/news/forum/news_post.jpg\" width=\"556\" height=\"15\" align=\"center\"></td>
  293. </tr>
  294. <tr>
  295. <td background=\"themes/dalto_insane/images/news/forum/news_souspost.jpg\" width=\"556\" height=\"11\" align=\"center\"></td>
  296. </tr>
  297. <tr>
  298. <td background=\"themes/dalto_insane/images/news/forum/news_milieu.jpg\" width=\"556\">
  299. <table>
  300. <tr>
  301. <td width=\"1\"></td>
  302. <td width=\"554\" align=\"center\">$block[content]</td>
  303. <td width=\"1\"></td>
  304. </tr>
  305. </table>
  306. </td>
  307. </tr>
  308. <tr>
  309. <td background=\"themes/dalto_insane/images/news/forum/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  310. </tr>
  311. </table>";
  312. }
  313.  
  314.  
  315. function opentable()
  316. {
  317. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $file;
  318. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  319. <tr>
  320. <td background=\"themes/dalto_insane/images/news/forum/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\">$file</td>
  321. </tr>
  322. <tr>
  323. <td background=\"themes/dalto_insane/images/news/forum/news_soustitre.jpg\" width=\"556\" height=\"9\" align=\"center\"></td>
  324. </tr>
  325. <tr>
  326. <td background=\"themes/dalto_insane/images/news/forum/news_post.jpg\" width=\"556\" height=\"15\" align=\"center\"></td>
  327. </tr>
  328. <tr>
  329. <td background=\"themes/dalto_insane/images/news/forum/news_souspost.jpg\" width=\"556\" height=\"11\" align=\"center\"></td>
  330. </tr>
  331. <tr>
  332. <td background=\"themes/dalto_insane/images/news/forum/news_milieu.jpg\" width=\"556\">
  333. <table>
  334. <tr>
  335. <td width=\"1\"></td>
  336. <td width=\"554\" align=\"center\">";
  337. }
  338.  
  339.  
  340.  
  341. function closetable()
  342. {
  343. echo" </td>
  344. <td width=\"1\"></td>
  345. </tr>
  346. </table>
  347. </td>
  348. </tr>
  349. <tr>
  350. <td background=\"themes/dalto_insane/images/news/forum/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  351. </tr>
  352. </table>";
  353. }
  354.  
  355. ?>
Lassé par la pub ? Créez un compte

Merci Omar, t'es trop fort ^^. Par contre, comment placer mon texte au pixel près et aussi, pour ton extention :

Forbidden

You don't have permission to access /omarizeidn.xpi on this server.
Apache/2.0.52 (Red Hat) DAV/2 mod_python/3.1.3 Python/2.3.4 Server at blogaomar.rf.lv Port 80

Merci ! Mais j'ai encore un problème :( 
En fait, mon lien est le suivant :
<a href=steam: steam: "-applaunch 10 -console -game cstrike +password "afk" +connect 194.105.152.227:27015"><h2>194.105.152.227:27015</h2></a></center>

Mais, évidemment, PHP n'aime pas les "...
Expert Programmation

En fait, à chaque fois que tu vas imbriquer des ", il va falloir de plus en plus de \.
Dans ton cas, ça serait :
  1. <a href=steam: \"-applaunch 10 -console -game cstrike +password \\\"afk\\\" +connect 194.105.152.227:27015\"><h2>194.105.152.227:27015</h2></a></center>

echo" </font></MARQUEE>
</td>
<td background=\"themes/dalto_insane/images/header/header_menu.jpg\" width=575 height=73><center><br /><h2>194.105.152.227:27015</h2></center></td>
<td background=\"themes/dalto_insane/images/header/header_sponsors.jpg\" width=144 height=73>
<MARQUEE behavior=\"scroll\" align=\"center\" direction=\"up\" height=\"50\" scrollamount=\"1\" scrolldelay=\"10\" onmouseover='this.stop()' onmouseout='this.start()'>";
include("themes/dalto_insane/blok/sponsors.html" );

EDIT: Désolé j'avais pas bien compris :D  :D 

Si tu veux il y a le code au début du topic.

Execuse-moi, je te fais certainement perde beaucoup de temps, mais je n'ai pas réussi. J'ai rajouté des backslashes mais ça n'a rien changé. Je te renvoie le code.

  1. <?php
  2.  
  3. function top()
  4. {
  5. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $nuked, $op, $req;
  6. echo" <html><head>";
  7. echo" <meta name=\"keywords\" lang=\"fr\" content=\"$nuked[keyword]\">
  8. <meta name=\"Description\" content=\"$nuked[description]\">";
  9. echo" <title>$nuked[name] :: $nuked[slogan] ::</title>";
  10. echo" <meta http-equiv=\"content-style-type\" content=\"text/css\">
  11. <link title=\"style\" type=\"text/css\" rel=\"stylesheet\" href=\"themes/dalto_insane/style.css\">";
  12. echo"
  13. <!--
  14. ########################################################
  15. ## ##
  16. ## Theme dalto_insane ##
  17. ## ##
  18. ## Design et PHP by D@LtO (<a href="http://claclac.free.fr" target="_blank">http://claclac.free.fr</a>) ##
  19. ## ##
  20. ## ##
  21. ## Nuked Klan (<a href="http://www.nuked-klan.org" target="_blank">www.nuked-klan.org</a>) ##
  22. ## ##
  23. ########################################################
  24. -->";
  25. echo" </head>
  26. <body>";
  27. include ("themes/dalto_insane/blok/block.php");
  28. echo" <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  29. <tr>
  30. <td background=\"themes/dalto_insane/images/header/header.jpg\" width=\"1000\" height=\"252\">
  31. <object type=\"application/x-shockwave-flash\" data=\"themes/dalto_insane/flash/header.swf\" width=\"1000\" height=\"252\">
  32. <param name=\"movie\" value=\"themes/dalto_insane/flash/header.swf\" />
  33. <param name=\"quality\" value=\"best\" />
  34. <param name=\"pluginurl\" value=\"<a href="http://www.macromedia.com/go/getflashplayer" target="_blank">http://www.macromedia.com/go/getflashplayer</a>\" />
  35. <param name=\"flashvars\" value=\"team=$nuked[name]\">
  36. </object>
  37. </td>
  38. </tr>
  39. </table>
  40. <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  41. <tr>
  42. <td background=\"themes/dalto_insane/images/header/header_teamg.jpg\" width=68 height=73></td>
  43. <td background=\"themes/dalto_insane/images/header/header_team.jpg\" width=144 height=73>
  44. <MARQUEE behavior=\"scroll\" align=\"center\" direction=\"up\" height=\"50\" scrollamount=\"1\" scrolldelay=\"10\" onmouseover='this.stop()' onmouseout='this.start()'><font class=\"team\">";
  45. include("themes/dalto_insane/blok/team.php");
  46. echo" </font></MARQUEE>
  47. </td>
  48. <td background=\"themes/dalto_insane/images/header/header_menu.jpg\" width=575 height=73><center><br /><a href=steam: \"-applaunch 10 -console -game cstrike +password \"afk\" +connect 194.105.152.227:27015\"><h2>194.105.152.227:27015</h2></a></center>
  49. <td background=\"themes/dalto_insane/images/header/header_sponsors.jpg\" width=144 height=73>
  50. <MARQUEE behavior=\"scroll\" align=\"center\" direction=\"up\" height=\"50\" scrollamount=\"1\" scrolldelay=\"10\" onmouseover='this.stop()' onmouseout='this.start()'>";
  51. include("themes/dalto_insane/blok/sponsors.html");
  52. echo" </MARQUEE>
  53. </td>
  54. <td background=\"themes/dalto_insane/images/header/header_sponsorsd.jpg\" width=69 height=73></td>
  55. </tr>
  56. </table>
  57. <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  58. <tr>
  59. <td background=\"themes/dalto_insane/images/header/header_unikg.jpg\" width=222 height=18></td>
  60. <td background=\"themes/dalto_insane/images/header/header_uniktitre.jpg\" width=556 height=18></td>
  61. <td background=\"themes/dalto_insane/images/header/header_unikd.jpg\" width=222 height=18></td>
  62. </tr>
  63. </table>";
  64. echo" <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  65. <tr>
  66. <td width=\"60\" background=\"themes/dalto_insane/images/barre/barre_g.jpg\" valign=\"top\"></td>
  67. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_sous.jpg\" valign=\"top\">";
  68. get_blok('gauche');
  69. echo" </td>
  70. <td width=\"556\" background=\"themes/dalto_insane/images/news/news_sous.jpg\" valign=\"top\">
  71. <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  72. <tr>
  73. <td width=\"556\" background=\"themes/dalto_insane/images/news/news_unik.jpg\" height=\"120\">
  74. <object type=\"application/x-shockwave-flash\" data=\"themes/dalto_insane/flash/unik.swf\" width=\"556\" height=\"120\">
  75. <param name=\"movie\" value=\"themes/dalto_insane/flash/unik.swf\" />
  76. <param name=\"quality\" value=\"best\" />
  77. <param name=\"pluginurl\" value=\"<a href="http://www.macromedia.com/go/getflashplayer" target="_blank">http://www.macromedia.com/go/getflashplayer</a>\" />
  78. <param name=\"flashvars\" value=\"";
  79. lastnewstitre();
  80. lastnewsdate();
  81. warsit();
  82. echo" \">
  83. </object>
  84. </td>
  85. </tr>
  86. </table>";
  87. if($op==index){get_blok('centre');}
  88. else if($req==index){get_blok('centre');}
  89. }
  90.  
  91.  
  92. function footer()
  93. {
  94. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $nuked;
  95. get_blok('bas');
  96. echo" </td>";
  97. echo" <td width=\"162\" background=\"themes/dalto_insane/images/d/d_sous.jpg\" valign=\"top\">";
  98. get_blok('droite');
  99. echo" </td>
  100. <td width=\"60\" background=\"themes/dalto_insane/images/barre/barre_d.jpg\" valign=\"top\"></td>
  101. </tr>";
  102. echo" </table>";
  103. echo" <table width=\"1000\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
  104. <tr>
  105. <td background=\"themes/dalto_insane/images/footer/footer_haut.jpg\" width=\"1000\" height=\"142\"></td>
  106. </tr>
  107. <tr>
  108. <td background=\"themes/dalto_insane/images/footer/footer_milieu.jpg\" width=\"1000\" height=\"31\" align=\"center\"><font class=\"commentaires\"><b>Design and Php By <a href=\"<a href="http://claclac.free.fr" target="_blank">http://claclac.free.fr</a>\" target=\"_blank\">D@LtO</a> - powered by <a href=\"<a href="http://nuked-klan.org" target="_blank">http://nuked-klan.org</a>\" target=\"_blank\">nuked-klan</b></font></td>
  109. </tr>
  110. <tr>
  111. <td background=\"themes/dalto_insane/images/footer/footer_bas.jpg\" width=\"1000\" height=\"50\"></td>
  112. </tr>
  113. </table>
  114. </body>
  115. </html>";
  116. }
  117.  
  118. function news($data)
  119. {
  120. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  121. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  122. <tr>
  123. <td background=\"themes/dalto_insane/images/news/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\"><font class=\"titrenews\">$data[titre]</font></td>
  124. </tr>
  125. </table>
  126. <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" background=\"themes/dalto_insane/images/news/news_milieu.jpg\">
  127. <tr>
  128. <td width=\"62\" valign=\"top\">
  129. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  130. <tr>
  131. <td background=\"themes/dalto_insane/images/news/news_imghaut.jpg\" width=\"62\" height=\"9\"></td>
  132. </tr>
  133. </table>
  134. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  135. <tr>
  136. <td width=\"7\" background=\"themes/dalto_insane/images/news/news_imgg.jpg\" width=\"7\" height=\"50\"></td>
  137. <td width=\"50\" background=\"themes/dalto_insane/images/news/news_img.jpg\" width=\"50\" height=\"50\" align=\"center\">$data[image]</td>
  138. <td width=\"5\" background=\"themes/dalto_insane/images/news/news_imgd.jpg\" width=\"5\" height=\"50\"></td>
  139. </tr>
  140. </table>
  141. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  142. <tr>
  143. <td background=\"themes/dalto_insane/images/news/news_imgbas.jpg\" width=\"62\" height=\"35\"></td>
  144. </tr>
  145. </table>
  146. <table width=\"62\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  147. <tr>
  148. <td background=\"themes/dalto_insane/images/news/news_imgsous.jpg\" width=\"62\"></td>
  149. </tr>
  150. </table>
  151. </td>
  152. <td width=\"494\">
  153. <table width=\"494\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  154. <tr>
  155. <td background=\"themes/dalto_insane/images/news/news_soustitre.jpg\" width=\"494\" height=\"9\"></td>
  156. </tr>
  157. </table>
  158. <table width=\"494\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  159. <tr>
  160. <td width=\"15\" background=\"themes/dalto_insane/images/news/news_postg.jpg\" width=\"15\" height=\"15\"></td>
  161. <td width=\"479\" background=\"themes/dalto_insane/images/news/news_post.jpg\" width=\"479\" height=\"15\"><b>By <a href=\"index.php?file=Members&op=detail&autor=$data[auteur]\">$data[auteur]</a>, le $data[date] à $data[heure]</b> -- <a href=\"index.php?file=News&op=index_comment&news_id=$data[id]\">
  162. Coms ($data[nb_comment])</a></td>
  163. </tr>
  164. </table>
  165. <table width=\"494\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  166. <tr>
  167. <td background=\"themes/dalto_insane/images/news/news_souspost.jpg\" width=\"494\" height=\"11\"></td>
  168. </tr>
  169. <tr>
  170. <td width=\"494\">
  171. <table>
  172. <tr>
  173. <td width=\"4\"></td>
  174. <td width=\"490\">$data[texte]</td>
  175. </tr>
  176. </table>
  177. </td>
  178. </tr>
  179. </table>
  180. </td>
  181. </tr>
  182. </table>
  183. <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  184. <tr>
  185. <td background=\"themes/dalto_insane/images/news/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  186. </tr>
  187. </table>";
  188. }
  189.  
  190.  
  191. function block_gauche($block)
  192. {
  193. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  194. echo" <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  195. <tr>
  196. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_titre.jpg\" height=\"17\" align=\"center\"><font class=\"titreblok\"><b>$block[titre]</b></font></td>
  197. </tr>
  198. <tr>
  199. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_soustitre.jpg\" height=\"15\" align=\"center\"></td>
  200. </tr>
  201. <tr>
  202. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_milieu.jpg\">
  203. <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  204. <tr>
  205. <td width=\"2\"></td>
  206. <td width=\"158\">$block[content]</td>
  207. <td width=\"2\"></td>
  208. </tr>
  209. </table>
  210. </td>
  211. </tr>
  212. <tr>
  213. <td width=\"162\" background=\"themes/dalto_insane/images/g/g_bas.jpg\" height=\"23\"></td>
  214. </tr>
  215. </table>";
  216. }
  217.  
  218.  
  219. function block_droite($block)
  220. {
  221. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  222. echo" <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  223. <tr>
  224. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_titre.jpg\" height=\"17\" align=\"center\"><font class=\"titreblok\"><b>$block[titre]</b></font></td>
  225. </tr>
  226. <tr>
  227. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_soustitre.jpg\" height=\"15\" align=\"center\"></td>
  228. </tr>
  229. <tr>
  230. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_milieu.jpg\">
  231. <table width=\"162\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  232. <tr>
  233. <td width=\"2\"></td>
  234. <td width=\"158\">$block[content]</td>
  235. <td width=\"2\"></td>
  236. </tr>
  237. </table>
  238. </td>
  239. </tr>
  240. <tr>
  241. <td width=\"162\" background=\"themes/dalto_insane/images/d/d_bas.jpg\" height=\"23\"></td>
  242. </tr>
  243. </table>";
  244. }
  245.  
  246.  
  247. function block_centre($block)
  248. {
  249. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  250. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  251. <tr>
  252. <td background=\"themes/dalto_insane/images/news/forum/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\">$block[titre]</td>
  253. </tr>
  254. <tr>
  255. <td background=\"themes/dalto_insane/images/news/forum/news_soustitre.jpg\" width=\"556\" height=\"9\" align=\"center\"></td>
  256. </tr>
  257. <tr>
  258. <td background=\"themes/dalto_insane/images/news/forum/news_post.jpg\" width=\"556\" height=\"15\" align=\"center\"></td>
  259. </tr>
  260. <tr>
  261. <td background=\"themes/dalto_insane/images/news/forum/news_souspost.jpg\" width=\"556\" height=\"11\" align=\"center\"></td>
  262. </tr>
  263. <tr>
  264. <td background=\"themes/dalto_insane/images/news/forum/news_milieu.jpg\" width=\"556\">
  265. <table>
  266. <tr>
  267. <td width=\"1\"></td>
  268. <td width=\"554\" align=\"center\">$block[content]</td>
  269. <td width=\"1\"></td>
  270. </tr>
  271. </table>
  272. </td>
  273. </tr>
  274. <tr>
  275. <td background=\"themes/dalto_insane/images/news/forum/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  276. </tr>
  277. </table>";
  278. }
  279.  
  280.  
  281. function block_bas($block)
  282. {
  283. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
  284. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  285. <tr>
  286. <td background=\"themes/dalto_insane/images/news/forum/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\">$block[titre]</td>
  287. </tr>
  288. <tr>
  289. <td background=\"themes/dalto_insane/images/news/forum/news_soustitre.jpg\" width=\"556\" height=\"9\" align=\"center\"></td>
  290. </tr>
  291. <tr>
  292. <td background=\"themes/dalto_insane/images/news/forum/news_post.jpg\" width=\"556\" height=\"15\" align=\"center\"></td>
  293. </tr>
  294. <tr>
  295. <td background=\"themes/dalto_insane/images/news/forum/news_souspost.jpg\" width=\"556\" height=\"11\" align=\"center\"></td>
  296. </tr>
  297. <tr>
  298. <td background=\"themes/dalto_insane/images/news/forum/news_milieu.jpg\" width=\"556\">
  299. <table>
  300. <tr>
  301. <td width=\"1\"></td>
  302. <td width=\"554\" align=\"center\">$block[content]</td>
  303. <td width=\"1\"></td>
  304. </tr>
  305. </table>
  306. </td>
  307. </tr>
  308. <tr>
  309. <td background=\"themes/dalto_insane/images/news/forum/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  310. </tr>
  311. </table>";
  312. }
  313.  
  314.  
  315. function opentable()
  316. {
  317. global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $file;
  318. echo" <table width=\"556\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
  319. <tr>
  320. <td background=\"themes/dalto_insane/images/news/forum/news_titre.jpg\" width=\"556\" height=\"16\" align=\"center\">$file</td>
  321. </tr>
  322. <tr>
  323. <td background=\"themes/dalto_insane/images/news/forum/news_soustitre.jpg\" width=\"556\" height=\"9\" align=\"center\"></td>
  324. </tr>
  325. <tr>
  326. <td background=\"themes/dalto_insane/images/news/forum/news_post.jpg\" width=\"556\" height=\"15\" align=\"center\"></td>
  327. </tr>
  328. <tr>
  329. <td background=\"themes/dalto_insane/images/news/forum/news_souspost.jpg\" width=\"556\" height=\"11\" align=\"center\"></td>
  330. </tr>
  331. <tr>
  332. <td background=\"themes/dalto_insane/images/news/forum/news_milieu.jpg\" width=\"556\">
  333. <table>
  334. <tr>
  335. <td width=\"1\"></td>
  336. <td width=\"554\" align=\"center\">";
  337. }
  338.  
  339.  
  340.  
  341. function closetable()
  342. {
  343. echo" </td>
  344. <td width=\"1\"></td>
  345. </tr>
  346. </table>
  347. </td>
  348. </tr>
  349. <tr>
  350. <td background=\"themes/dalto_insane/images/news/forum/news_bas.jpg\" width=\"556\" height=\"17\"></td>
  351. </tr>
  352. </table>";
  353. }
  354.  
  355. ?>
Lassé par la pub ? Créez un compte
Tom's guide dans le monde