How can i retrieve a column values from my database table and show it as a drop down box in php with codeigniter.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Simply write a function in one of your models (application/models) that fetches all the data you want.
Something like:
Then you have to load that model file in the controller, and finally in your view file try something like this:
where model_name is your model. You only need to style your html as a dropdown.
You can get more information in here