我遇到的最奇怪的 PHP 问题。有一些 PHP 代码只在某些机器上运行。
客户打电话来解决问题。文件名是 portada.html
我以前看过这个网站,它运行良好。我知道 PHP 代码通常在 .php 文件上运行,但这个过去在这个 .html 文件上运行得很好。也许是一些 apache conf 或他们以前的 Web 开发人员做过的事情。
因此,现在当您使用某些机器时它运行良好,但在其他机器上却无法运行。任何人都知道为什么会发生这样的事情?
这是运行不正常的代码。
<script language="" type="text/javascript">
var so = new SWFObject("gallery.swf?xmlPath=galleries/gallery__something_<?
$sql_conf="select galeria_something from ct_conf";
$res_conf=mysql_query($sql_conf);
$row_conf=mysql_fetch_assoc($res_conf);
echo $row_conf["galeria_something"];
?>.xml", "something", "320", "238", 7, "");
so.addParam("allowScriptAccess", "sameDomain")
so.addParam("quality", "high");
so.addParam("scale", "noscale");
so.write("renta");
</script>
代码在 Google Chrome 上执行,而不是在 Firefox 上