我想通过使用变量名称使用URL传递php变量的值。这是我想要实现的一个例子,它没有工作,也没有崩溃所以我知道我很接近......任何人......请:
<a href="student_what_learning_unit.php?student=<?php $student_user ?>">Unit Learning</a>
答案 0 :(得分:1)
我个人不想在HTML中放入一小段PHP代码。它可以做到,但它是有问题的。最好编写干净的PHP代码,例如:
<?php
$url = 'student_what_learning_unit.php?student='.urlencode($student_user);
echo '<a href="'.$url.'">Unit Learning</a>';
您需要urlencode()
作为网址,请参阅:
答案 1 :(得分:0)
只需像这样添加echo
:
<a href="student_what_learning_unit.php?student=<?php echo $student_user ?>">Unit Learning</a>