[QUICK] help please in mysql signature.
#1

I am getting this problem.



its a dynamic players stats generator.

Please help quick.
Thank You.
Reply
#2

Show us your php code? Probaly something wrong in it.
Reply
#3

here's the code

PHP код:
// Creating of the .png image.  
    
header('Content-Type: image/png;'); // Don't touch this. We use this to tell the script we're working with an image. 
    
$im = @imagecreatefrompng('mypicture.png') or die("Cannot select the correct image. Please contact the webmaster."); // Don't forget to put your picture there. Eg: playersig.png 
    
$text_color imagecolorallocate($im197,197,199); // RED, GREEN, BLUE --> Go to www.colorpicker.com, select a nice color, copy the R/G/B letters provided by colorpicker and put them here. 
    
$text_username "$Playername"// This gets the information: player name to be showed in the picture. 
    
$text_score "$Score"// Same as above but with score. 
    
$text_money "$Money"// Same as above but with money. 
    
$font 'myfont.ttf'//Upload your custom font to the directory where this file is placed. Then change the name here. 
    /* USAGE OF THE imagettftext: First ($im) shouldn't be changed. (16) is the text-size. (0) is the angle of your text. Change it, and you'll see what's going on. (20) is de X-coordinate of the text. 
    (36) is the Y-coordinate of the text. */ 
    
imagettftext($im1602036$text_color$font$text_username); // Prints the username in the picture.  
    
imagettftext($im1607269$text_color$font$text_score); // Prints the score in the picture. 
    
imagettftext($im1607299$text_color$font$text_money); // Prints the money in the picture. 
    
imagepng($im); 
    
imagedestroy($im); 
and here's the image

Reply
#4

Are you sure that the picture is named mypicture.png?
Reply
#5

yes :/
Reply
#6

i used this tutorial

https://sampforum.blast.hk/showthread.php?tid=301435

please can anybody help?
Reply
#7

Remove the quotes in your variables.
Reply
#8

no change
Reply
#9

PHP код:
// Creating of the .png image.  
    
header("content-Type: image/png"); // Don't touch this. We use this to tell the script we're working with an image. 
    
$im = @imagecreatefrompng("mypicture.png"); // Don't forget to put your picture there. Eg: playersig.png 
    
$text_color imagecolorallocate($im197,197,199); // RED, GREEN, BLUE --> Go to www.colorpicker.com, select a nice color, copy the R/G/B letters provided by colorpicker and put them here. 
    
$text_username $Playername// This gets the information: player name to be showed in the picture. 
    
$text_score $Score// Same as above but with score. 
    
$text_money $Money// Same as above but with money. 
    
$font "myfont.ttf"//Upload your custom font to the directory where this file is placed. Then change the name here. 
    /* USAGE OF THE imagettftext: First ($im) shouldn't be changed. (16) is the text-size. (0) is the angle of your text. Change it, and you'll see what's going on. (20) is de X-coordinate of the text. 
    (36) is the Y-coordinate of the text. */ 
    
imagettftext($im1602036$text_color$font$text_username); // Prints the username in the picture.  
    
imagettftext($im1607269$text_color$font$text_score); // Prints the score in the picture. 
    
imagettftext($im1607299$text_color$font$text_money); // Prints the money in the picture. 
    
imagepng($im); 
    
imagedestroy($im); 
If that doesn't work:
1. Are you sure you have the image in the same directory as this script?
2. How are you fetching the variables? (Playername, Score, Money)
3. Are you sure you have the font in the same directory as this script?
Reply
#10

check the script

PHP код:
$player_name=$_GET['player_name']; // This gets the player his name from the previous page. 

/* Next, we will make a connection to the mysql.  
If it can't connect, it'll print on the screen: Unable to select database. Be sure the databasename exists and online is. */ 

mysql_connect($host,$username,$password); // Connection to the database. 
@mysql_select_db($database) or die( "Unable to select database. Be sure the databasename exists and online is."); //Selection of the database. If it can't read the database, it'll give an error. 

/* To protect MySQL injection. */ 
$player_name stripslashes($player_name); 
$player_name mysql_real_escape_string($player_name); 



$query="SELECT * FROM accounts WHERE Name='$player_name'";    // Gets all the information about the player. 
$result=mysql_query($query); 
$i=mysql_num_rows($result); // Here we are counting how many rows this result gives us. 

/* We will now put the player's information into variables so we can use them more easily. */ 
/* DON'T FORGET: The names should be exact the same as in your mysql db.*/ 

if ($i == 1// If the user has been correct, then it'll give us 1 row. If its 1 row, then it'll proceed with the code. 

         
    
$Name=mysql_result($result,0,"Name"); // Gets the username of the player and put it in the variable $Playername. 
    
$Money=mysql_result($result,0,"Money"); // Gets the money of the player and put it in the variable $Money. 
    
$Score=mysql_result($result,0,"Score"); // Gets the score of the player and put it in the variable $Score. 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)