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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: cgiles82
  • Content: Threads
  • Order by date
  1. cgiles82

    Check boxes and Array

    I need to take the values passed from checkboxes in a html form and put all the ones checked into a single field. My array doesn't seem to be working. my $stuff; foreach $field (param("County")) { if ($field->checked) $stuff += "|" + $field->value; } my $sql = "INSERT into main...
  2. cgiles82

    foreach

    foreach ($title) { $_=~s/\&/&#38/g; $_=~s/\"/&#34/g; $_=~s/\'/&#39/g; } The script replace any " in the title with &#34 but then the script replaces the & with &#38. Is there a work around?

Part and Inventory Search

Back
Top