Help! I'm writing a code to display an array of data. For some reason this condition statement is causing the full script to fail. $founddex is a variable that is set to yes if an entry in the array is found that is to be amended. This routine should only be triggered when the results from a form submission has no duplicate record already in the array (@workfile), assume that $founddex is equal to "no" in this case. am_or_pm is simply a holding variable that shows what part of the day the form has been submitted in (am or pm). Can anyone tell me why this is hanging up? I'm new to the monks and any help would be appreciated :0)
if ($founddex = "no") { if ($am_or_pm eq "am") { $morntime = $formdata{'$timedata'}; $mornread = $formdata{'$readdata'}; $morneaten = $formdata{'$eaten'}; $noontime = "N/A"; $noonread = "N/A"; $nooneaten = "N/A"; } else { $noontime = $formdata{'$timedata'}; $noonread = $formdata{'$readdata'}; $nooneaten = $formdata{'eaten'}; $morntime = "N/A"; $mornread = "N/A"; $morneaten = "N/A"; } $appendedrecord=$arraydate."-".$morntime."-".$moreread."-".$morn +eaten."-".$noontime."-".$noonread."-".$nooneaten; $newdex = $#workfile; ++$newdex; $workfile[$newdex] = $appendedrecord; }

In reply to Conditional is stopping script by heretic

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.