PHP嵌套在html当中(文件保存为php)php部分的代码没有输出,在html代码外定义的数组,输出里面的元素 20
<html><head><title>MyFirstWebApplication</title></head><body><center>查询结果</center><ta...
<html>
<head>
<title>MyFirstWebApplication</title>
</head>
<body>
<center>查询结果</center>
<table border=1 align =center>
<tr>
<th>Month</th><th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<? $a = 1;
echo $a; ?> //这里没有输出
</body>
</html>
<?
$a = array( 0=>array("1,2"),
1=>array("2,3"),
); 展开
<head>
<title>MyFirstWebApplication</title>
</head>
<body>
<center>查询结果</center>
<table border=1 align =center>
<tr>
<th>Month</th><th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<? $a = 1;
echo $a; ?> //这里没有输出
</body>
</html>
<?
$a = array( 0=>array("1,2"),
1=>array("2,3"),
); 展开
5个回答
展开全部
可以输出结果的,错误应该是在你的这个PHP文件没有书写完整,作如下修改就行
<html>
<head>
<title>MyFirstWebApplication</title>
</head>
<body>
<center>查询结果</center>
<table border=1 align =center>
<tr>
<th>Month</th><th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<? $a = 1;
echo $a; ?> //这里没有输出
</body>
</html>
<?
$a = array( 0=>array("1,2"),
1=>array("2,3"));?>
<html>
<head>
<title>MyFirstWebApplication</title>
</head>
<body>
<center>查询结果</center>
<table border=1 align =center>
<tr>
<th>Month</th><th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<? $a = 1;
echo $a; ?> //这里没有输出
</body>
</html>
<?
$a = array( 0=>array("1,2"),
1=>array("2,3"));?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是因为你的电脑的php没有配置好吧?要先配置好apache之类的东西
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把你的这个
<? $a = 1;
echo $a; ?>
改成
<?php $a = 1;
echo $a; ?> 就可以了,别忘了给分,说话算数喔!你的标签不对!
<? $a = 1;
echo $a; ?>
改成
<?php $a = 1;
echo $a; ?> 就可以了,别忘了给分,说话算数喔!你的标签不对!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的意思没表达清楚 想实现什么,所以没人能回答你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
no expected output;
: not run to that sentense OR the output is blank OR the browser dose not display the output correctly.
: not run to that sentense OR the output is blank OR the browser dose not display the output correctly.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询