[PHP] Form to form variables

2006-04-03 Thread Bill Whitacre
I wonder if I may trouble you'all for some advice. I'm having a problem bringing along text variables with more than one word in them from form to form. The project is an on-line baseball score pitching log submission form that I'm trying to make a little more automated. The first form asks

Re: [PHP] Form to form variables

2006-04-03 Thread Wolf
You aren't encapsulating your data with quotes, so it is thinking the next word is another variable. input type = hidden name = IDFIELD value = $thearray[id] input type = hidden name = yourleague value = $league input type = hidden name = yourteam value = $team