如何在php中打开相同页面/框架上的链接?

时间:2013-07-18 14:34:01

标签: php

我想在同一个索引页面上打开此页面 如何将此链接放在索引页面中?

<a herf="includes/user_manage.php?id =<?php echo $id; ?>">

我试过这个,但它不起作用:

<a herf ="index.php?page=includes/user_manage.php?id =<?php echo $id; ?> ">

但是如果我使用它可以工作:

<a herf="includes/user_manage.php?id =<?php echo $id; ?>">

谢谢

1 个答案:

答案 0 :(得分:2)

您有类型错误

尝试

<a href="includes/user_manage.php?id=<?php echo $id; ?>"> Link </a>

为了帮助您记住,您可以选择其中任何一种会留在脑中的

Hypermedia Reference
Hypertext Reference
HTTP Reference
Hyperlink Reference
HTML Reference

因为我不知道href代表什么。它可以是你想要的任何东西