-3

我想在同一个索引页面上打开这个页面 我怎样才能把这个链接放在索引页面上?

<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; ?>">

谢谢

4

1 回答 1

2

你有一个类型错误

尝试

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

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

Hypermedia Reference
Hypertext Reference
HTTP Reference
Hyperlink Reference
HTML Reference

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

于 2013-07-18T14:36:34.773 回答