0

从赞助商那里得到代码,它是用 PHP 编写的,遗憾的是我的网站是用 Perl 编写的,并且有 html 模板,当我尝试粘贴代码脚本时,它就不起作用了……我真的是编码方面的菜鸟,也许你们可以帮助我? 这是代码:

   <?php
   // Replace the download URL.
   $download_url = "<TMPL_VAR direct_link>";
   // Replace the software name to appear in the installer.
   $software_name = "PUZZLE";
   // URL to a logo image. Must be configured through your affiliate manager.(Optional)
   $logo_image = "http://cdn.airdlrstatic.com/graphics/affiliate/yourname/image.png";
   // URL to a product image. Please consult your affiliate manager for details.
   $product_image = "";
   // Sub ID (Optional)
   $sub_id = "";
   // Software Bundle ID for tracking.
   $bundle = "c8d494949";
   ?>

   <a href='<?php include '/download/download.php'; ?>'>Click Here!</a>

有什么解决办法吗?

4

1 回答 1

3

PHP代码放在一个PHP文件中,然后iframe在您希望它显示的页面中添加一个。

假设您调用您的 php 文件myfile.php并在您希望它显示的网页中添加以下代码:

<iframe src="myfile.php" width="300" height="400" frameBorder="0"></iframe> 

显然还有其他(更好的)方法,但需要一些编码技能。这是您无需任何复杂编码即可实现它的最简单方法。

于 2013-06-13T01:16:34.973 回答