Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mcloide
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcloide/df1204a3ead384bcd9bc to your computer and use it in GitHub Desktop.
Save mcloide/df1204a3ead384bcd9bc to your computer and use it in GitHub Desktop.
google-php-community-help
<html>
<body>
<?php
$query = "select * from ad where id='0'";
$result = mysql_query($query);
$row = mysql_fetch_assoc($result);
$abc = urlencode($row['ad_link']);
?>
<a target="_blank" href="<?php echo $abc; ?>" rel="tag">
<img height="250" width="300" src="data:image;base64,<?php echo $row['image_data']; ?>">
</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment