使用URL传递php变量的内容

时间:2015-02-13 15:19:08

标签: php variables url

我想通过使用变量名称使用URL传递php变量的值。这是我想要实现的一个例子,它没有工作,也没有崩溃所以我知道我很接近......任何人......请:

<a href="student_what_learning_unit.php?student=<?php $student_user ?>">Unit Learning</a>

2 个答案:

答案 0 :(得分:1)

我个人不想在HTML中放入一小段PHP代码。它可以做到,但它是有问题的。最好编写干净的PHP代码,例如:

<?php

$url = 'student_what_learning_unit.php?student='.urlencode($student_user);
echo '<a href="'.$url.'">Unit Learning</a>';

您需要urlencode()作为网址,请参阅:

http://php.net/manual/en/function.urlencode.php

答案 1 :(得分:0)

只需像这样添加echo

<a href="student_what_learning_unit.php?student=<?php echo $student_user ?>">Unit Learning</a>