how to get parameter in php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
srichandar
Forum Newbie
Posts: 6
Joined: Thu Apr 02, 2009 9:36 am

how to get parameter in php

Post by srichandar »

Hi all,
In this i have to get all the values from the page(i have attached the screen shot).
In this so many text and combo boxes are there.
for this form i used a for loop
the name will be in thos order combo_skill1,combo_skill2,....combo_skill10
text_skill1,text_skill2....text_skill10
naming convention is like this only..

how can i get that value from the next page.


thanks in advance,
sridhar
Attachments
skills.JPG
skills.JPG (66.28 KiB) Viewed 92 times
Mark Baker
Forum Regular
Posts: 710
Joined: Thu Oct 30, 2008 6:24 pm

Re: how to get parameter in php

Post by Mark Baker »

Start by changing your naming convention to use arrays (e.g. combo_skill[] ), it will make things a lot easier for you
User avatar
dethron
Forum Contributor
Posts: 370
Joined: Sat Apr 27, 2002 11:39 am
Location: Istanbul

Re: how to get parameter in php

Post by dethron »

POST, GET, and REQUEST are holy words that you are looking for ;)
Post Reply