
06.01.2010, 00:02
|
|
Познающий
Регистрация: 24.05.2009
Сообщений: 32
Провел на форуме: 104603
Репутация:
0
|
|
Сообщение от suser
Частенько так делаю. помог=+
PHP код:
<? include'inc.php';
/* inc.php
<?
if ($_GET['x']==1)
{
$content = 'подскользнулся';
}
else
{
$content = 'упал':
}
?>
*/
?>
<html>
<head><title>Сайт</title></head>
<body>
<table width="500" height="200" border="1" align="center" cellpadding="1" cellspacing="1">
<tr>
<td width="539" height="193" align="center">Вася ходил по льду и <?=$content;?></td>
</tr>
</table>
</body>
</html>
при этом short_tags=on в php.ini
|
|
|