如何从mysql中的记录建立链接?

时间:2015-06-22 07:46:55

标签: php html

我这里有显示记录表格数据库的代码..我想要的是我想让用户名成为链接,当我点击链接用户名时,它会打开一个新窗口..有人请帮助我有了它...因为我试图从互联网上搜索但它不起作用..

继承代码

 public function dataview($query)
 {

 $stmt = $this->db->prepare($query);
 $stmt->execute();

 if($stmt->rowCount()>0)
 {
 while($row=$stmt->fetch(PDO::FETCH_ASSOC)) {
 echo "<tr>";
 echo "<td> ".$row['user_id']." </td>";
 echo "<td> ".$row['username']." </td>";

 echo "<td> ".$row['password']." </td>";
 echo '<td><a style="float:left"  href="VIEWSAMPLE.PHP?user_id=' .  $row["user_id"] . '>'.$row["username"].'"<input name="image" type="image" value="edit"><image src="image/EDIT.png" class="img-responsive" width="25px"></a>
  <a style="float:left" href="delete.php?user_id=' . $row["user_id"] . '>" <input name="image" type="image" value="delete" onclick="return confirm(\'are you sure?\')"><image src="image/DELETE.png" class="img-responsive" width="25px"> </a></td>';
   echo "</tr>";
   }
 }
 else
 {
 echo "<tr>";
        "<td>Nothing here...</td>";
        "</tr>";
  }
 }
}
?>

这是pop_up的代码(this)

function pop_up(url){ window.open(URL,&#39; WIN2&#39;,&#39;状态=没有,工具栏=没有,滚动条=是,标题栏=没有,菜单栏=没有,可调整大小=是,宽度= 800,高度= 600 ,目录=没有,位置=无&#39;) }

1 个答案:

答案 0 :(得分:1)

请发布

的Javascript代码
pop_up(this)

如果在js方法下为新窗口编写了任何代码,则删除

  

目标= “_空白”

在锚标记中。