|
发表于 2003-6-17 09:35:11
|
显示全部楼层
来自 中国–北京–北京–朝阳区
最初由 ltd 发表
帮帮我把。
这是我查看服务器的地址
http://ltdstudio.51.net/zt/query.php
设置如下,但是老是地图图片出不来大家帮帮我啊。
[PHP]<?
$serverip = "61.186.152.133"; // Your server's IP address
$serverport = 27016; // Your server's port
$mapsdl = "http://ltdstudio.51.net/zt/";
// Link to download maps
$relimgpath = "img/"; // Relative path to map-images
// Set to "" to disable images
$mapimgext = "jpg"; // Map image extension
// Ignored if img path is ""
require_once("madquery.php"); // REQUIRED, do not change
[/PHP]
下面应该有一段
[PHP]
<img src="<?
echo $relimagepath;
if(file_exists($relimgpath.$server->mMap().$mapimgext)) {
echo $server->mmap();
} else {
echo "nopic";
}
echo ".".$mapimgext;
[/PHP]
这个部分你那里怎么写的? |
|