11
ich ersetze also
mit
aber wie füge ich
mit der datenbankabfrage
in den ursprünglichen code ein??
<a href="mailto:<?php echo $row_R1['mail'] ?>" class="ergebnisschriftmailer"><?php echo $row_R1['mail'] ?></a>
mit
<img src="email-script.php?id=<?php echo $recordID ?>" alt="" />
aber wie füge ich
$recordID = (int) $_GET['id'];
mit der datenbankabfrage
$colname_R1 = "-1";
if (isset($_GET['recordID'])) {
$colname_R1 = $_GET['recordID'];
}
mysql_select_db($database_Eingabe, $Eingabe);
$query_R1 = sprintf("SELECT Eingabe.id,Eingabe.mail FROM Eingabe WHERE id = %s", GetSQLValueString($colname_R1, "int"));
$R1 = mysql_query($query_R1, $Eingabe) or die(mysql_error());
$row_R1 = mysql_fetch_assoc($R1);
$totalRows_R1 = mysql_num_rows($R1);$colname_R1 = "-1";
if (isset($_GET['recordID'])) {
$colname_R1 = $_GET['recordID'];
}
in den ursprünglichen code ein??
<?php
$EMAIL=$_REQUEST['mail'];
// Set the content-type
header('Content-type: image/png');
// Create the image
$im = imagecreatetruecolor(350, 30);
// Create some colors
$white = imagecolorallocate($im, 0, 0, 0);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// The text to draw
$text = $EMAIL;
// Replace path by your own font path
$font = 'cour.ttf';
// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>