-3

谁能看到我在哪里搞砸了?

我希望实现的输出是有一个 78 像素 x 78 像素的框,并且每个像素都有一个指向另一个页面的链接,目前只有第一个像素有效。

代码加载到页面上,可以在图像下看到,这是怎么回事?

   <html>
<head>

<title>Untitled Page</title>

<style type="text/css">
#ImageMap1
{
   border: 0px #000000 solid;
}
</style>
</head>
<body>
<div id="wb_ImageMap1" style="position:absolute;left:0px;top:0px;width:600px;height:600px;z-index:0;">

<img src="images/black.bmp" id="ImageMap1" alt="" usemap="#ImageMap1_map" border="0" style="width:600px;height:600px;">

<map name="ImageMap1_map">
foreach ($string){
    $x = 1; $y = 1; $z = 1;$output = '';
    for($x=1;$x<79;$x++)
    {
    for($y=1;$y<79;$y++)
    $string = $x .','.$y.','.$z;
    $output .= '<area shape="circle" coords="'. $string . '" href="./index.html" target="_blank" alt="" yellow="">'
    }
    }
    echo $output;

</map>
</div>
</body>
</html>
4

2 回答 2

1

您需要将代码包装在 php 标签中

<?php
foreach ($string){
    $x = 1; $y = 1; $z = 1;$output = '';
    for($x=1;$x<79;$x++)
    {
    for($y=1;$y<79;$y++)
    $string = $x .','.$y.','.$z;
    $output .= '<area shape="circle" coords="'. $string . '" href="./index.html" target="_blank" alt="" yellow="">'
    }
    }
    echo $output;
?>
于 2013-10-03T05:58:30.877 回答
0

您将代码添加为纯文本,让它由 php 执行,添加 php 标签。

如果存在 php 标签,那么只有服务器知道执行它并处理它,否则它被认为是纯文本。

所以像这样使用:

foreach ($string){
$x = 1; $y = 1; $z = 1;$output = '';
for($x=1;$x<79;$x++)
{
for($y=1;$y<79;$y++)
$string = $x .','.$y.','.$z;
$output .= '<area shape="circle" coords="'. $string . '" href="./index.html" target="_blank" alt="" yellow="">'
}
}
echo $output;
于 2013-10-03T05:58:49.390 回答