本文介绍了在查询字符串中传递变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
$courses_taken=$row['course_id'];
<a href="course.php?course_id=$courses_taken"></a>
从上面的代码中可以看到,我正在获取一个变量并将其传递到查询字符串中,但是这种方法是错误的.
As you can see from above code, i'm taking a variable and passing it in query string, but this method is wrong.
我如何在查询字符串中传递变量,因为每个用户都会选择不同的课程,因此他们将具有不同的course_id.
How can i pass a variable in query string, as each user will have opted for different courses, thus they will have different course_id.
有办法吗?
推荐答案
<?php
$courses_taken=$row['course_id'];
?>
<a href="course.php?course_id=<?php echo $courses_taken; ?>"></a>
这篇关于在查询字符串中传递变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!