show-example.php

来自「eGroupWare is a multi-user, web-based gr」· PHP 代码 · 共 25 行

PHP
25
字号
<?php $target = urldecode($HTTP_GET_VARS['target']); ?>
<!doctype html public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title> Test suite for JpGraph - <?php echo $target; ?></title>
<script type="text/javascript" language="javascript">
<!--
function resize()
{
	return true;
}
//-->
</script>
</head>
<frameset rows="*,*" onLoad="resize()">
	<?php 
	if( !strstr($target,"csim") )
		echo "<frame src=\"show-image.php?target=".basename($target)."\" name=\"image\">";
	else
		echo	"<frame src=\"".basename($target)."\" name=\"image\">";
	?>
	<frame src="show-source.php?target=<?php echo basename($target); ?>" name="source">
</frameset>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?