Hello.
I have created a table in mysql in which I keep information about courses that people can study.
Some of the fields I use are course_name, category, key, etc.
There are many courses with different info for each one.
I also use a field as a key (pass) for the user to be able to join a specific course.
Is there any way to select a specific key of a specific course from the table and print it on screen?
Thanks in advance...
get value from table
Moderator: General Moderators
Code: Select all
SELECT key FROM table WHERE course_name = 'php_mysql_education';