我想做一个交互式的网页,让用户输入数据,调用matlab,用已有的matlab程序给出仿真结果
展开全部
用表单<form>就能解决问题
用户输入界面user.php若下:
<body>
<form name="form" action="matlab.php" method="post">
<table border="0" cellpadding="0" cellspacing="0">
<tr height="30">
<td width="40%" align="right">输入信息:</td>
<td align="left" ><input name="shuju" type="text" class="input"/></td>
</tr>
</table>
</form>
</body>
在matlab.php中
<?php
$shuju=$_POST['shuju'];
echo $shuju;
?>
在是php语言做的,不知道对你有不有用
用户输入界面user.php若下:
<body>
<form name="form" action="matlab.php" method="post">
<table border="0" cellpadding="0" cellspacing="0">
<tr height="30">
<td width="40%" align="right">输入信息:</td>
<td align="left" ><input name="shuju" type="text" class="input"/></td>
</tr>
</table>
</form>
</body>
在matlab.php中
<?php
$shuju=$_POST['shuju'];
echo $shuju;
?>
在是php语言做的,不知道对你有不有用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询