求助!关于index.php?id=xxx 的问题
<?php$id = $_GET['id'];
header("Cache-Control:no-cache,must-revalidate");
header("Pragma:no-cache");
$lines = file_get_contents(' http://218.22.14.84:8080/soms4/web/jwzt/ahtv/anhui_live.jsp?channelId=200');
$addresstemp = strstr($lines,"mms://");
$address = strtok($addresstemp,"\"");
echo $address;
?>
----------------------------
我想用<?php echo $id?>替换 http://218.22.14.84:8080/soms4/web/jwzt/ahtv/anhui_live.jsp?channelId=200这个中的200的值。
用上面的代码做成index.php的文件。
最后通过index.php?id=200来实现
不知道<?php echo $id?>在 http://218.22.14.84:8080/soms4/web/jwzt/ahtv/anhui_live.jsp?channelId= 如何来表达。望哪位高手指点一下为谢。