我有一个变量url.php
。我想在多个其他文件中访问它。我试图包含url.php
在所有这些文件中。但是有一个问题。
<?php
include 'url.php'; //include url.php
echo "My id is : $myid";
?>
<!DOCTYPE html>
<html>
<head>
<!-- AddThis Smart Layers END -->
</head>
//somecontent
<body>
url.php
有 html 代码,包括按钮、div 等。当我包含url.php
.
如何仅包含 php 变量并跳过 url.php 中的其他 html 代码。
url.php 看起来像这样:
<?php
$myid=$_POST['myid'];
echo "myID is : <br>";
echo $myid;
?>
<html>
<head>
<html xmlns:fb="http://ogp.me/ns/fb#">
</head>
//some othe html stuff
</html>