Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经为客户端下载了一个 flickr 照片 php 脚本。要访问照片库,您必须单击链接以转到该页面。我想将照片库嵌入网页本身,这样您就不必单击链接。我可以通过将 index.php 中的 php 代码复制并粘贴到网页 html 中的 php 标签中来做到这一点,还是比这更复杂?
图库和所有相关文件位于代码文件夹中,如下所示。我可以像<?php include 'codes/index.php' ?>在portfolio.php的html中那样包含文件吗?
<?php include 'codes/index.php' ?>
您需要将要嵌入图库的网页更改为 php 文件(更改扩展名,以便服务器将其解析为 php 文件而不是静态 html 文件)。
然后,您可以将图库 php 代码(包括打开和关闭 php 标签)放在您已经存在的 html 代码之间。