Okay so I have this big form that has multiple textboxs.
Is there anyway to have the textboxs act like a checkbox? Meaning the value only gets to the array if the textbox is filled out?
Here’s the code I have so far concerning this (I’m not showing you guys the whole form, just the part I need help with.)
[php]
On the next page I’m trying to take the post variables but some reason It wont let me.
[php]
<?php $description = $_POST["desc"]; echo $description[0]; ?>[/php]
I’m just trying to echo the value right now, Later I’m going to put the values in an email. possibly using foreach.
But can anyone help me by getting the textbox variables right?