Announcement

Collapse
No announcement yet.

problem with EFS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • problem with EFS

    this script is giving me a hard time

    the script works fine as is but when I unblock the lines at the 3 lines at the bottom then the "bar" changes and all of them show as "Up" i must be blind but I cant figure the problem

    can somebody help

    thanks in advance
    Attached Files

  • #2
    assignments like A = 0 use one '='
    for conditionals ( if ) use '=='

    Comment


    • #3
      thanks David but that did'nt solve the issue as all bars are identified as UP

      Originally posted by DavidZ
      assignments like A = 0 use one '='
      for conditionals ( if ) use '=='

      Comment


      • #4
        '==' for equallity testing in an if statement

        PHP Code:
            if(bar == "Up") { 

        Comment


        • #5
          thats what I did but still same problem
          i have attached the new EFS for you to see

          Originally posted by DavidZ
          '==' for equallity testing in an if statement

          PHP Code:
              if(bar == "Up") { 
          Attached Files

          Comment


          • #6
            you added a ';' -- take it out --

            Comment


            • #7
              THANK YOU for your help that did it

              i was trying different things that ";" was one of them


              Originally posted by DavidZ
              you added a ';' -- take it out --

              Comment


              • #8
                You're welcome. May all your coding problems be so easy

                You did correctly narrow the problem code down to a few lines, helped me to see it quickly.

                Here is a great PDF file for reference, first 20 pages or so are very helpful

                Comment

                Working...
                X