Hello,
Please help me with this problem. I need to make an update form in which I have to display all available courses (checkboxes named "courseID" with courseID in value) and at the same time I need to check those boxes that student already registered for.
Here are my queries
<cfif ParameterExists(URL.Stu_ID)>
<cfquery name="find_student" datasource="#sourse#">
SELECT *
FROM registration INNER JOIN
Students ON registration.stu_ID = Students.Stu_ID INNER JOIN
Courses ON registration.courseID = Courses.CourseID
where registration.Stu_Id = #URL.stu_ID#
</cfquery>
</cfif>
<cfquery name="getcourses" datasource="#sourse#">
select * from courses
</cfquery>
When I try to output I have this code:
<cfoutput query="getcourses">
<tr>
<td valign="top">
<input type="Checkbox" name="CourseID" value="#getcourses.courseID#" <cfif ISDefined("find_student.courseid<Cfloop query="find_student"><cfif #find_student.courseid# is #getcourses.courseID#>checked</cfif></CFLOOP></cfif>>
</td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size=2>#getcourses.coursename#</font> <br></td></tr>
</cfoutput>
I don't get the result I need.
If you have an idea what I am doing wrong, please help!!!
Thank you!
Please help me with this problem. I need to make an update form in which I have to display all available courses (checkboxes named "courseID" with courseID in value) and at the same time I need to check those boxes that student already registered for.
Here are my queries
<cfif ParameterExists(URL.Stu_ID)>
<cfquery name="find_student" datasource="#sourse#">
SELECT *
FROM registration INNER JOIN
Students ON registration.stu_ID = Students.Stu_ID INNER JOIN
Courses ON registration.courseID = Courses.CourseID
where registration.Stu_Id = #URL.stu_ID#
</cfquery>
</cfif>
<cfquery name="getcourses" datasource="#sourse#">
select * from courses
</cfquery>
When I try to output I have this code:
<cfoutput query="getcourses">
<tr>
<td valign="top">
<input type="Checkbox" name="CourseID" value="#getcourses.courseID#" <cfif ISDefined("find_student.courseid<Cfloop query="find_student"><cfif #find_student.courseid# is #getcourses.courseID#>checked</cfif></CFLOOP></cfif>>
</td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size=2>#getcourses.coursename#</font> <br></td></tr>
</cfoutput>
I don't get the result I need.
If you have an idea what I am doing wrong, please help!!!
Thank you!