Scrpit Générateur de Banniere par Aweb

Eléphanteau du PHP | 16 Messages

01 nov. 2006, 15:53

Bonjour à tous et à toutes ! J'aimerais installé sur mon site le générateur de banniere conçu par Aweb ! J'ai eu beau modifié les fichiers comme indiqué le script ne marche pas ! Ai-je fait une erreur dans mes modifications ? Donc voila je voulez savoir tout d'abbord si vous connaissiez ce script ? Puis si il y avez une personne qui pouvez regarde mon fichier et voir si tout était bon !

En vous remerciant à l'anvance

Cordialement,

Yann

Edit : voila mon fichier index qu'est-ce qui ne va pas ??
<?php
$pour = 'Yann31140'; //Votre pseudo

//Ne touchez à rien en dessous de cette ligne si vosu ne conaissez pas le PHP !!!
//Si vosu avez des erreurs, faites un CHMOD sur les répertoires "fonts" et 
//"banners" et sur les fichiers à l'intérieur.
//Vous pouvez tout modifier dans ce script SAUF les copyright !!!
//(Violation de droit d'auteur)

//Script (c)2005 Aweb Productions. All Rights Reserved.

$banner = 'Choisissez une bannière...';
if (@$_POST['banner'] != NULL) {$banner = @$_POST['banner'];}
$font = 'Choisissez une police...';
if (@$_POST['font'] != NULL) {$font = @$_POST['font'];}
$text = 'Texte';
if (@$_POST['text'] != NULL) {$text = @$_POST['text'];}
$size = '20';
if (@$_POST['size'] != NULL) {$size = @$_POST['size'];}
$RGBr = '255';
if (@$_POST['RGBr'] != NULL) {$RGBr = @$_POST['RGBr'];}
$RGBg = '255';
if (@$_POST['RGBg'] != NULL) {$RGBg = @$_POST['RGBg'];}
$RGBb = '255';
if (@$_POST['RGBb'] != NULL) {$RGBb = @$_POST['RGBb'];}
$x = '5';
if (@$_POST['x'] != NULL) {$x = @$_POST['x'];}
$y = '40';
if (@$_POST['y'] != NULL) {$y = @$_POST['y'];}
$angle = '0';
if (@$_POST['angle'] != NULL) {$angle = @$_POST['angle'];}

//En cas de sauvegarde
if (@$_GET['save'] == '1') {

$fichier = 'generated/image.png';
$nom_fichier = 'banniere.png';
//$tailleFichier = filesize($fichier);
$_GET['save'] = 'image';
include 'banniere.php';

// téléchargement du fichier
header('Content-disposition: attachment; filename='.$nom_fichier);
header('Content-Type: application/force-download');
header('Content-Transfer-Encoding: fichier'); 
header('Content-Length: '.filesize('generated/image.png'));
header('Pragma: no-cache');
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
header('Expires: 0');
readfile($fichier); 
exit;
}
?>
<html>
 <head>
  <title>Générateur de Bannières - (c) 2005 Aweb pour <?php echo $pour; ?></title>
  </head>

 <body>
 Générateur de bannières
<?php
if (@$_GET['mode'] == 'view') {
echo '<br><u>Voici votre bannière :</u><br><img src="banniere.php?size='.@$_POST['size'].'&text='.@$_POST['text'].'&banner='.@$_POST['banner'].'&x='.@$_POST['x'].'&y='.@$_POST['y'].'&font='.@$_POST['font'].'&RGBr='.@$_POST['RGBr'].'&RGBg='.@$_POST['RGBg'].'&RGBb='.@$_POST['RGBb'].'&angle='.@$_POST['angle'].'">';
echo '<br><a href="?mode=view&save=1&size='.@$_POST['size'].'&text='.@$_POST['text'].'&banner='.@$_POST['banner'].'&x='.@$_POST['x'].'&y='.@$_POST['y'].'&font='.@$_POST['font'].'&RGBr='.@$_POST['RGBr'].'&RGBg='.@$_POST['RGBg'].'&RGBb='.@$_POST['RGBb'].'&angle='.@$_POST['angle'].'">T&eacute;l&eacute;charger l\'image !</a>';
}
?>
  <form name="form1" method="post" action="index.php?mode=view">
    <table width="815" border="0">
      <tr>
        <td width=30% valign="top"><strong>Image : </strong></td>
        <td width=70%><p>
          <select name="banner">
		    <OPTION SELECTED><?php echo $banner; ?>
		    <OPTION>---
            <?php
	if ($handle = opendir('banners')) {
   while (false !== ($file = readdir($handle))) {
       if ($file != "." && $file != ".." && $file != "blackfont.png" && $file != "Thumbs.db") {
           echo "<OPTION>

          </select>  
        - <a href="#null" onClick="window.open('banners.php','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES BANNIERES</a> </p>
        </td>
      </tr>
      <tr>
        <td valign="top"><strong>Police : </strong></td>
        <td><p>
          <select name="font">
		    <OPTION SELECTED><?php echo $font; ?>
		    <OPTION>---
            <?php
	if ($handle = opendir('fonts')) {
   while (false !== ($file = readdir($handle))) {
       if ($file != "." && $file != ".." && $file != "Thumbs.db") {
           echo "<OPTION>

          </select> 
          - <a href="#null" onClick="window.open('fonts.php','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES POLICES</a> 
		</p>
        </td>
      </tr>
      <tr>
        <td valign="top"><strong>Texte : </strong></td>
        <td><input type="text" name="text" value="<?php echo $text; ?>"></td>
      </tr>
      <tr>
        <td valign="top"><strong>Taille du texte : </strong></td>
        <td><input type="text" name="size" value="<?php echo $size; ?>"> 
        (de 1 &agrave; 100) </td>
      </tr>
      <tr>
        <td valign="top"><strong>Couleur du texte : </strong></td>
        <td><p>R(Rouge):
            <input name="RGBr" type="text" size="5" maxlength="3" value="<?php echo $RGBr; ?>">
			G(Vert):
            <input name="RGBg" type="text" size="5" maxlength="3" value="<?php echo $RGBg; ?>"> 
            B(Bleu):
            <input name="RGBb" type="text" size="5" maxlength="3" value="<?php echo $RGBb; ?>">
-            <a href="#null" onClick="window.open('rgb.htm','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES COULEURS</a> </p>
        </td>
      </tr>
      <tr>
        <td valign="top"><strong>Position X (horizontal) : </strong></td>
        <td><input type="text" name="x" value="<?php echo $x; ?>"></td>
      </tr>
      <tr>
        <td valign="top"><strong>Position Y (vertical) : </strong></td>
        <td><input type="text" name="y" value="<?php echo $y; ?>"></td>
      </tr>
      <tr>
        <td valign="top"><strong>Angle du texte : </strong></td>
        <td><input type="text" name="angle" value="<?php echo $angle; ?>"></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><input type="submit" name="Submit" value="Cr&eacute;er !!!"></td>
      </tr>
    </table>
  </form>
  
  <?php //La suppretion du copyright entraîne une violation du copyright. 
  //Vous pouvez ajouter votre propre copyright Dessus ou Dessous mais 
  //Supprimer ou Modifier le mien est purement illégal.?>
  (c) 2005 <a href="mailto:[email protected]">Aweb</a> pour <?php echo $pour; ?>. <a href="http://aweb.eurower.net/scripts/" target="_blank">http://aweb.eurower.net/scripts/ <br>
  </a>
 </body>
</html>


voici un aperçu :arrow: http://img404.imageshack.us/img404/8527/awebcm9.jpg


kes qui ne vas pas !! ??Le cadre rouge ! cela ne devrait pas apparaitre ceci, cela devrait apparaitre qu'une fois une banniere créé ! pourquoi est-ce ainsi ?

En vous remerciant encore une fois

ViPHP
ViPHP | 656 Messages

01 nov. 2006, 21:59

J'ai viré tes echo qui quoaient et ne fermais pas les " sans parler du bazard de ce script.

Je sais pas qui a fait ça mais ça vaut pas grand chose... désolé.
<?php 
$pour = 'Yann31140'; //Votre pseudo 

//Ne touchez à rien en dessous de cette ligne si vosu ne conaissez pas le PHP !!! 
//Si vosu avez des erreurs, faites un CHMOD sur les répertoires "fonts" et  
//"banners" et sur les fichiers à l'intérieur. 
//Vous pouvez tout modifier dans ce script SAUF les copyright !!! 
//(Violation de droit d'auteur) 

//Script (c)2005 Aweb Productions. All Rights Reserved. 

$banner = 'Choisissez une bannière...'; 
if (@$_POST['banner'] != NULL) {$banner = @$_POST['banner'];} 
$font = 'Choisissez une police...'; 
if (@$_POST['font'] != NULL) {$font = @$_POST['font'];} 
$text = 'Texte'; 
if (@$_POST['text'] != NULL) {$text = @$_POST['text'];} 
$size = '20'; 
if (@$_POST['size'] != NULL) {$size = @$_POST['size'];} 
$RGBr = '255'; 
if (@$_POST['RGBr'] != NULL) {$RGBr = @$_POST['RGBr'];} 
$RGBg = '255'; 
if (@$_POST['RGBg'] != NULL) {$RGBg = @$_POST['RGBg'];} 
$RGBb = '255'; 
if (@$_POST['RGBb'] != NULL) {$RGBb = @$_POST['RGBb'];} 
$x = '5'; 
if (@$_POST['x'] != NULL) {$x = @$_POST['x'];} 
$y = '40'; 
if (@$_POST['y'] != NULL) {$y = @$_POST['y'];} 
$angle = '0'; 
if (@$_POST['angle'] != NULL) {$angle = @$_POST['angle'];} 

//En cas de sauvegarde 
if (@$_GET['save'] == '1') { 

$fichier = 'generated/image.png'; 
$nom_fichier = 'banniere.png'; 
//$tailleFichier = filesize($fichier); 
$_GET['save'] = 'image'; 
include 'banniere.php'; 

// téléchargement du fichier 
header('Content-disposition: attachment; filename='.$nom_fichier); 
header('Content-Type: application/force-download'); 
header('Content-Transfer-Encoding: fichier');  
header('Content-Length: '.filesize('generated/image.png')); 
header('Pragma: no-cache'); 
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); 
header('Expires: 0'); 
readfile($fichier);  
exit; 
} 
?> 
<html> 
 <head> 
  <title>Générateur de Bannières - (c) 2005 Aweb pour <?php echo $pour; ?></title> 
  </head> 

 <body> 
 Générateur de bannières 
<?php 
if (@$_GET['mode'] == 'view') { 
echo '<br><u>Voici votre bannière :</u><br><img src="banniere.php?size='.@$_POST['size'].'&text='.@$_POST['text'].'&banner='.@$_POST['banner'].'&x='.@$_POST['x'].'&y='.@$_POST['y'].'&font='.@$_POST['font'].'&RGBr='.@$_POST['RGBr'].'&RGBg='.@$_POST['RGBg'].'&RGBb='.@$_POST['RGBb'].'&angle='.@$_POST['angle'].'">'; 
echo '<br><a href="?mode=view&save=1&size='.@$_POST['size'].'&text='.@$_POST['text'].'&banner='.@$_POST['banner'].'&x='.@$_POST['x'].'&y='.@$_POST['y'].'&font='.@$_POST['font'].'&RGBr='.@$_POST['RGBr'].'&RGBg='.@$_POST['RGBg'].'&RGBb='.@$_POST['RGBb'].'&angle='.@$_POST['angle'].'">T&eacute;l&eacute;charger l\'image !</a>'; 
} 
?> 
  <form name="form1" method="post" action="index.php?mode=view"> 
    <table width="815" border="0"> 
      <tr> 
        <td width=30% valign="top"><strong>Image : </strong></td> 
        <td width=70%><p> 
          <select name="banner"> 
            <OPTION SELECTED><?php echo $banner; ?> 
            <OPTION>--- 
            <?php 
    if ($handle = opendir('banners')) { 
   while (false !== ($file = readdir($handle))) { 
       if ($file != "." && $file != ".." && $file != "blackfont.png" && $file != "Thumbs.db") { 
           ?><OPTION> 

          </select>   
        - <a href="#null" onClick="window.open('banners.php','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES BANNIERES</a> </p> 
        </td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Police : </strong></td> 
        <td><p> 
          <select name="font"> 
            <OPTION SELECTED><?php echo $font; ?> 
            <OPTION>--- 
            <?php 
    if ($handle = opendir('fonts')) { 
   while (false !== ($file = readdir($handle))) { 
       if ($file != "." && $file != ".." && $file != "Thumbs.db") { 
           ?><OPTION> 

          </select>  
          - <a href="#null" onClick="window.open('fonts.php','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES POLICES</a>  
        </p> 
        </td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Texte : </strong></td> 
        <td><input type="text" name="text" value="<?php echo $text; ?>"></td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Taille du texte : </strong></td> 
        <td><input type="text" name="size" value="<?php echo $size; ?>">  
        (de 1 &agrave; 100) </td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Couleur du texte : </strong></td> 
        <td><p>R(Rouge): 
            <input name="RGBr" type="text" size="5" maxlength="3" value="<?php echo $RGBr; ?>"> 
            G(Vert): 
            <input name="RGBg" type="text" size="5" maxlength="3" value="<?php echo $RGBg; ?>">  
            B(Bleu): 
            <input name="RGBb" type="text" size="5" maxlength="3" value="<?php echo $RGBb; ?>"> 
-            <a href="#null" onClick="window.open('rgb.htm','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES COULEURS</a> </p> 
        </td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Position X (horizontal) : </strong></td> 
        <td><input type="text" name="x" value="<?php echo $x; ?>"></td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Position Y (vertical) : </strong></td> 
        <td><input type="text" name="y" value="<?php echo $y; ?>"></td> 
      </tr> 
      <tr> 
        <td valign="top"><strong>Angle du texte : </strong></td> 
        <td><input type="text" name="angle" value="<?php echo $angle; ?>"></td> 
      </tr> 
      <tr> 
        <td>&nbsp;</td> 
        <td><input type="submit" name="Submit" value="Cr&eacute;er !!!"></td> 
      </tr> 
    </table> 
  </form> 
   
  <?php //La suppretion du copyright entraîne une violation du copyright.  
  //Vous pouvez ajouter votre propre copyright Dessus ou Dessous mais  
  //Supprimer ou Modifier le mien est purement illégal.?> 
  (c) 2005 <a href="mailto:[email protected]">Aweb</a> pour <?php echo $pour; ?>. <a href="http://aweb.eurower.net/scripts/" target="_blank">http://aweb.eurower.net/scripts/ <br> 
  </a> 
 </body> 
</html> 

Eléphanteau du PHP | 16 Messages

01 nov. 2006, 22:33

c'est Aweb qui à fait ce script !

voila le script une fois rempli :
<?php
$pour = 'Yann31140'; //Votre pseudo

//Ne touchez à rien en dessous de cette ligne si vosu ne conaissez pas le PHP !!!
//Si vosu avez des erreurs, faites un CHMOD sur les répertoires "fonts" et 
//"banners" et sur les fichiers à l'intérieur.
//Vous pouvez tout modifier dans ce script SAUF les copyright !!!
//(Violation de droit d'auteur)

//Script (c)2005 Aweb Productions. All Rights Reserved.

$banner = 'Choisissez une bannière...';
if (@$_POST['banner'] != NULL) {$banner = @$_POST['banner'];}
$font = 'Choisissez une police...';
if (@$_POST['font'] != NULL) {$font = @$_POST['font'];}
$text = 'Texte';
if (@$_POST['text'] != NULL) {$text = @$_POST['text'];}
$size = '20';
if (@$_POST['size'] != NULL) {$size = @$_POST['size'];}
$RGBr = '255';
if (@$_POST['RGBr'] != NULL) {$RGBr = @$_POST['RGBr'];}
$RGBg = '255';
if (@$_POST['RGBg'] != NULL) {$RGBg = @$_POST['RGBg'];}
$RGBb = '255';
if (@$_POST['RGBb'] != NULL) {$RGBb = @$_POST['RGBb'];}
$x = '5';
if (@$_POST['x'] != NULL) {$x = @$_POST['x'];}
$y = '40';
if (@$_POST['y'] != NULL) {$y = @$_POST['y'];}
$angle = '0';
if (@$_POST['angle'] != NULL) {$angle = @$_POST['angle'];}

//En cas de sauvegarde
if (@$_GET['save'] == '1') {

$fichier = 'generated/image.png';
$nom_fichier = 'banniere.png';
//$tailleFichier = filesize($fichier);
$_GET['save'] = 'image';
include 'banniere.php';

// téléchargement du fichier
header('Content-disposition: attachment; filename='.$nom_fichier);
header('Content-Type: application/force-download');
header('Content-Transfer-Encoding: fichier'); 
header('Content-Length: '.filesize('generated/image.png'));
header('Pragma: no-cache');
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
header('Expires: 0');
readfile($fichier); 
exit;
}
?>
<html>
<body>
 <head>
  <title>Générateur de Bannières - (c) 2005 Aweb pour <Gagnez Des Cadeaux></title>
  </head>

 
<center><span style="font-size:12pt;"> <b><u>Générateur de bannières</u></b></span></font><br /></br>
Une fois votre bannière terminée, faites un clic droit sur la bannière et enregistrer l'image !</center></br></br>

<center><?php
if (@$_GET['mode'] == 'view') {
echo '<br><u>Voici votre bannière :</u><br><img src="banniere.php?size='.@$_POST['size'].'&text='.@$_POST['text'].'&banner='.@$_POST['banner'].'&x='.@$_POST['x'].'&y='.@$_POST['y'].'&font='.@$_POST['font'].'&RGBr='.@$_POST['RGBr'].'&RGBg='.@$_POST['RGBg'].'&RGBb='.@$_POST['RGBb'].'&angle='.@$_POST['angle'].'">';
echo '<br><a href="?mode=view&save=1&size='.@$_POST['size'].'&text='.@$_POST['text'].'&banner='.@$_POST['banner'].'&x='.@$_POST['x'].'&y='.@$_POST['y'].'&font='.@$_POST['font'].'&RGBr='.@$_POST['RGBr'].'&RGBg='.@$_POST['RGBg'].'&RGBb='.@$_POST['RGBb'].'&angle='.@$_POST['angle'].'">T&eacute;l&eacute;charger l\'image !</a>';
}
?><br /><br /></br>
  
<?php
<form name="form1" method="post" action="index.php?mode=view">
    <table width="600" border="0">
      <tr>
        <td width=30% valign="top"><strong>Image : </strong></td>
        <td width=70%><p>
          <select name="banner">
		    <OPTION SELECTED>Bannières
<OPTION>01.gif
<OPTION>02.gif
<OPTION>03.gif
<OPTION>04.gif
<OPTION>05.gif
<OPTION>06.gif
<OPTION>07.gif
<OPTION>08.gif
<OPTION>09.gif
<OPTION>10.gif
<OPTION>11.gif
<OPTION>12.gif
<OPTION>13.gif
<OPTION>14.gif
<OPTION>15.png
<OPTION>16.png
<OPTION>17.png
<OPTION>18.png
<OPTION>19.png
<OPTION>20.png
<OPTION>21.png
<OPTION>22.png
<OPTION>23.png
<OPTION>24.png
<OPTION>25.png
<OPTION>26.png
<OPTION>27.png
<OPTION>28.png
<OPTION>29.png
<OPTION>30.png
<OPTION>31.png
<OPTION>32.png
<OPTION>33.png
<OPTION>34.png
<OPTION>35.png
<OPTION>36.png
<OPTION>37.png
<OPTION>38.png
<OPTION>39.png
<OPTION>40.png
<OPTION>41.png
<OPTION>42.png
<OPTION>43.png
<OPTION>44.png
<OPTION>45.png
<OPTION>46.png
<OPTION>47.png
<OPTION>48.png
<OPTION>49.png
<OPTION>50.png
<OPTION>51.png
<OPTION>52.png

		    
            <?php
	if ($handle = opendir('banners')) {
   while (false !== ($file = readdir($handle))) {
       if ($file != "." && $file != ".." && $file != "blackfont.png" && $file != "Thumbs.db") {
           echo "<OPTION >



          </select>  
        - <a href="#null" onClick="window.open('banners.php','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES BANNIERES</a> </p>
        </td>
      </tr>
      <tr>
        <td valign="top"><strong>Police : </strong></td>
        <td><p>
          <select name="font">
		    <OPTION SELECTED>Polices
<OPTION>aladdin.ttf
<OPTION>ALBA.ttf
<OPTION>ALBAM.TTF
<OPTION>ALBAS.TTF
<OPTION>AlphaMacAOE.TTF
<OPTION>BABYCAKE.TTF
<OPTION>BABYU.TTF
<OPTION>BABYUI.TTF
<OPTION>BACK.TTF
<OPTION>BADABB.TTF
<OPTION>CRAPJ.TTF
<OPTION>DAYROM.TTF
<OPTION>kablam!.TTF
<OPTION>MAROLA.TTF
<OPTION>Nameless Harbor.TTF
<OPTION>OXNARD.TTF
<OPTION>pe.TTF
<OPTION>tintin_talking.TTF
<OPTION>vinotef.TTF
<OPTION>Vinotefc.TTF
<OPTION>vinotel.TTF
<OPTION>vinotes.TTF
<OPTION>WALSHES.TTF
<OPTION>WALSHESO.TTF
<OPTION>Yahoo.TTF
<OPTION>YUGLY.TTF
<OPTION>ZOINKFAT.ttf  




            <?php
	if ($handle = opendir('fonts')) {
   while (false !== ($file = readdir($handle))) {
       if ($file != "." && $file != ".." && $file != "Thumbs.db") {
           echo "<OPTION>

          </select> 
          - <a href="#null" onClick="window.open('fonts.php','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES POLICES</a> 
		</p>
        </td>
      </tr>
      <tr>
        <td valign="top"><strong>Texte : </strong></td>
        <td><input type="text" name="text" value="Texte"></td>
      </tr>
      <tr>
        <td valign="top"><strong>Taille du texte : </strong></td>
        <td><input type="text" name="size" value="20"> 
        (de 1 &agrave; 100) </td>
      </tr>
      <tr>
        <td valign="top"><strong>Couleur du texte : </strong></td>
        <td><p>R(Rouge):
            <input name="RGBr" type="text" size="5" maxlength="3" value="255">
			G(Vert):
            <input name="RGBg" type="text" size="5" maxlength="3" value="255"> 
            B(Bleu):
            <input name="RGBb" type="text" size="5" maxlength="3" value="255">
-            <a href="#null" onClick="window.open('rgb.htm','Displayd','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');">VOIR LES COULEURS</a> </p>
        </td>
      </tr>
      <tr>
        <td valign="top"><strong>Position X (horizontal) : </strong></td>
        <td><input type="text" name="x" value="50"></td>
      </tr>
      <tr>
        <td valign="top"><strong>Position Y (vertical) : </strong></td>
        <td><input type="text" name="y" value=""></td>
      </tr>
      <tr>
        <td valign="top"><strong>Angle du texte : </strong></td>
        <td><input type="text" name="angle" value=""></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td><input type="submit" name="Submit" value="Cr&eacute;er !!!"></td>
      </tr>
    </table>
  </form>
  
  <br /><br /><?php //La suppression du copyright entraîne une violation du copyright. 
  //Vous pouvez ajouter votre propre copyright Dessus ou Dessous mais 
  //Supprimer ou Modifier le mien est purement illégal.?>
  <a href="mailto:[email protected]">Aweb</a> pour Gagnez Des Cadeaux.
  </a>
 </body>
</html>

Il ne vaut rien mais je ne connais que celui la et je ne saurais en faire un :?

Invité
Invité n'ayant pas de compte PHPfrance

01 nov. 2006, 22:41

Votre site ressemble etrangement a celui-ci : http://www.ogametut.free.fr/

est-ce normal??
Est une nouvelle version?
Ou est ce juste pour permettre au utilisateur d'ogame d'avoir leur propre banniere??

Invité
Invité n'ayant pas de compte PHPfrance

01 nov. 2006, 22:43

Une autre question : comment avez vous fait pour que le generateur accepte les banniere.gif??

Eléphanteau du PHP | 16 Messages

02 nov. 2006, 11:47

Votre site ressemble etrangement a celui-ci : http://www.ogametut.free.fr/

est-ce normal??
Est une nouvelle version?
Ou est ce juste pour permettre au utilisateur d'ogame d'avoir leur propre banniere??
ce site n'est pas celui d'ogame ! c'est un autre site avec le meme kit graphique tout simplement :wink:


Une autre question : comment avez vous fait pour que le generateur accepte les banniere.gif??

c'est une erreur de ma part ! je n'est pas encore mis les autres bannieres au format png ! :oops:

Eléphant du PHP | 106 Messages

02 nov. 2006, 17:50

Mais est-ce du meme hauteur?? :D

Eléphanteau du PHP | 16 Messages

02 nov. 2006, 18:07

Mais est-ce du meme hauteur?? :D
de ? le site ? le script ?

Eléphant du PHP | 106 Messages

02 nov. 2006, 18:42

le site??

Eléphanteau du PHP | 16 Messages

02 nov. 2006, 18:53

non ! et je ne connait meme pas l'auteur du site sur Ogame :wink:

Eléphant du PHP | 106 Messages

02 nov. 2006, 20:02

Ba alors ou a tu eu ce design??

Eléphanteau du PHP | 16 Messages

02 nov. 2006, 22:15

sur webdiz.com :roll:

Eléphant du PHP | 106 Messages

03 nov. 2006, 10:57


Eléphanteau du PHP | 16 Messages

03 nov. 2006, 13:14

oui en effet le script et le même présenter sur ce site que celui que je recherche :wink: