Ask a Question related to PHP Development, Design and Development.
-
JDJones #1
Omitting form fields if empty
I have a form I'm putting together. The processing will be on a PHP
script that will take all the field names and print them out on the
email it sends to me. No problem there. But what I'd like to do is have
it exclude printing the field name and value when there are any blank
values in the field.
The processing part of the script is this:
if (is_array($val)) {
for ($z=0;$z<count($val);$z++) {
$content .= "$key: $val[$z]\n";
}
} else {
$content .= "$key: $val\n";
}
How would I adapt this to not print a field name with a blank value?
Thanks.
JDJones Guest
-
Check Empty form fields
Hi all, Is there a simple extension that checks so that a form filed is not empty before submitting? -
Empty Fields
I am new to CF. I am trying to figure out how to remove blank lines from my output when there are no values for a particular field in the database.... -
Dealing with empty fields from database query
Using the procedure in the Dreamweaver manual for building search/result pages I'm trying to retrieve data from MYSQL database and put it into a... -
How come if you use a rs.fields(0).value it sometimes is empty?
Why does this happen: the code below works fine as-is. If I take out tempValue = rs.fields(i).value and put rs.fields(i).value everywhere... -
IPostBackDataHandler.LoadPostData does not fire on empty postDataKey form fields
After creating a custom MultiSelectBox that has a checkbox list, i noticed that the control wasn't updating it's selected listitems when no... -
Randell D. #2
Re: Omitting form fields if empty
"JDJones" <seebelow@sprynet.com> wrote in message
news:YW07b.290954$Oz4.79719@rwcrnsc54...> I have a form I'm putting together. The processing will be on a PHP
> script that will take all the field names and print them out on the
> email it sends to me. No problem there. But what I'd like to do is have
> it exclude printing the field name and value when there are any blank
> values in the field.
>
> The processing part of the script is this:
>
> if (is_array($val)) {
> for ($z=0;$z<count($val);$z++) {
> $content .= "$key: $val[$z]\n";
> }
> } else {
> $content .= "$key: $val\n";
> }
>
>
> How would I adapt this to not print a field name with a blank value?
>
> Thanks.
>
if (is_array($val)) {
for ($z=0;$z<count($val);$z++) {
if(strlen($val[$z])>0) // If the length of your value is greater than
zero, then include it
{ $content .= "$key: $val[$z]\n"; }
}
} else {
$content .= "$key: $val\n";
}
Randell D. Guest



Reply With Quote

