string item = string.Empty;
List<string> keyss = new List<string>();
while (!string.IsNullOrWhiteSpace(item = Console.ReadLine()))
{
keyss.Add(item);
}
foreach (var itm in keyss)
{
Console.WriteLine(itm);
}
执行foreach循环,学生的值显示在 home_v.php页面。除了这些学生的名字,我还添加了一个按钮 (添加学生)。点击此按钮我想打开另一个视图页面 user_v.php,我在按钮中使用了onclick标签。但事实并非如此 工作,我得到下面的错误。请帮助,因为错误 我正在制作。
<html>
<head><head>
<title>Home Page</title>
<body>
<style>
.looks
{
border:1px solid black;
}
</style>
<center><h1>Welcome Students!</h1><br><br></center>
<span style="float: right;">
<a href="<?php echo site_url().'/user_c/logout' ?>">Logout</a>
</span>
<h2>List of Students in system are : </h2>
<div id="list">
<table class='looks'>
<tr><th>Student Name</th>
<th></th><th></th><th></th></tr>
<?php
foreach ($list->result() as $row)
{
echo "<tr>";
echo "<td style='width:30%'>".$row->name."</td>";
echo "<td><input type='submit' value='Add Student' style='float:left'
onclick="site_url().'/user_c/add'"></td>";
echo '<td><input type="submit" value="Update Student"
style="float:left"></td>';
echo '<td><input type="submit" value="Delete Student"
style="float:left"></td>';
echo "</tr>";
}
?>
</table>
</div>
</body>
</html>
答案 0 :(得分:0)
你在连接PHP和HTML数据时犯了错误。 为了使其适用于点击,请执行以下更改:
echo "<td><input type='submit' value='Add Student' style='float:left'
onclick=window.location='". site_url("user_c/add")."'></td>";