Jump to content

php query string help


deansaddigh

Recommended Posts

Can someone tell me whts wrong with my querystring

 

echo 'Course name: ' . ucfirst($row['course_name']) .  '<a href="course_enquiry.php?courseid =.$row['course_name']&schoolname=$row['school_name']"><img src="images/email.jpg" alt="enquire about this course" title="click to enquire about this course"></a><br />'."\r\n";

 

basically just trying to pass through school_name and course-name to an enquiry page

getting an error though

Link to comment
https://forums.phpfreaks.com/topic/193010-php-query-string-help/
Share on other sites

u missed some ' around $row

//

echo 'Course name: ' . ucfirst($row['course_name']) .  '<a href="course_enquiry.php?courseid ='.$row['course_name'].'&schoolname='.$row['school_name'].'"><img src="images/email.jpg" alt="enquire about this course" title="click to enquire about this course"></a><br />'."\r\n";

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.