考虑以下工作正常的代码。
<?php
require_once 'php/db_conx.php';
$Result = mysql_query("SELECT * FROM table ORDER BY lastupdated") or die (mysql_error());
while($row = mysql_fetch_array($Result))
{ ?>
<input name="1" type="submit" value=" ">
<span><?php echo $row['name'];?></span>
<?php
// then i close the PHP started at on top.
}?>
现在,以下内容不会在 print_r 上打印任何内容,而只是 'array()' 而不是会话 $Variable '$U' 本身。
<?php
{
session_start();
$_SESSION['U'] = 'www.gmail.com';
?>
一些 HTML
<?php
Print_r ($_SESSION);
}
?>