我正在寻找一种在Cloudapp或Droplr中使用的另一个页面上显示文件或图像的方法。我问,因为我想在这些页面上显示用户查看其文件的广告。据我所知,这可以通过PHP完成。
我有一个系统步骤,已经开发出来供用户将他们的文件上传到我服务器上的文件夹中。我现在需要的是在文件页面上显示广告......
答案 0 :(得分:0)
简单输出
有什么问题<img src="http://theotherserver/path/to/image" />
从你的脚本。您当然可以让PHP获取图像并为您的用户代理它,然后您将带宽费用加倍(1次点击以获取图像droplr-&gt;服务器,然后再点击以从服务器发送图像 - &gt;用户)。
答案 1 :(得分:0)
以下是显示图片和广告的文件的基本框架:
<?php
// Path to the directory that holds the images
$imageDir = 'images/';
// Make sure an image was requested
if (!isset($_GET['image'])) {
exit('No image requested to display');
}
// Full path to image
$imagePath = $imageDir.$_GET['image'];
// Make sure the image exists
if (!is_file($imagePath)) {
exit("Image doesn't exist!");
}
?>
<html>
<head>
<title><?php echo $imagePath; ?></title>
</head>
<body>
<div>
<!-- HTML for advert goes here -->
<div>Buy Stuff! It's great for wasting your money on!</div>
</div>
<div>
<!-- Display the image -->
<img src="<?php echo $imagePath; ?>" alt="<?php echo $imagePath; ?>" />
</div>
</body>
</html>
这缺少许多部分,但那么你对你想要的东西的描述......