From the course: PHP Practice Challenges

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Generate a form from an array of values

Generate a form from an array of values

From the course: PHP Practice Challenges

Generate a form from an array of values

- [Instructor] Writing a form can be tedious and repetitive. But what if you had a PHP function that generated the form for you? That's what you'll build in this challenge. Here are the requirements. You'll be provided with an array that can be used to build a form. I want you to analyze the array and make sure you understand how it works, how it is built, and how the form will come together. Then create a function built form that's actually provided for you already that accepts an array to process the form. The function should return the markup for the form. We're not printing the form on the fly. We are returning the complete markup in a string. Then you can print the markup into the provided HTML file. You may also add helper functions if needed. I decided to add a couple, but again, every solution is different, so yours will be different from mine. And that's okay. Pause the video here, then let's get to the solution. Okay, so let's get into the solution. Here is the provided…

Contents