Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

check boxes

Status
Not open for further replies.

jmycr

Programmer
Mar 11, 2002
48
US
i can send the check box info to the next page. What about forwarding the info to a page after that one?
 
sessions...hidden forms...asp/php...databases....depends on how complex you wanna go....

Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Oh i dont know, how about hidden forms? This is a sample of what im doing.
I am reading lines from a file and displaying them as checkboxes to allow a cust to select one or more (which could amount to thousands of selected boxes).

while(in)
{
if(!str_empty(str)){
cout<<&quot;   <input type=checkbox
name=\&quot;FileList\&quot;
value=\&quot;&quot;<<str<<&quot;\&quot;>&quot;<<str<<&quot;<BR>&quot;<<endl;
}
}

On the page that i am sending the boxes checked, I am using the info, but i would also like to use it on the page after.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top