Forum Moderators: coopster
I am creating a html form which has 5 html list menu and menu value get store in array after hitting submit button. The value stores in PHP array and then print on same page and then after re checking the value
If i want modification then click the edit button and value re store in the same html form.
Here we are not using the database.
If it is possible then plz provide me the code and if there is any other solution to this problem them plz guide me.
When you submit the form, at this moment as you mentioned, you are storing it in array. Instead you can put it in session variables, so that you can have the values available on every page. Read about SESSION here [php.net]
You can also $_REQUEST them in to hidden text boxes, where you can reuse them again.
Habtom