I want to ask how to add country list dropdown in cakephp? I have country table in the database.
Thanks!
I want to ask how to add country list dropdown in cakephp? I have
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.
You should have a field in your form like so:
right?
Then just pass the countries down from the controller:
Since your Model should be connected (“related”) to Country via BelongsTo relation.
This is really just absolute cakephp basics. Please try the tutorial and read the documentation careful. This is all covered there. Also, I highly recommend that you bake your code – this way you can learn a lot more, as well.