I was just wondering, since I haven't found HOW to use this useful command, if you could tell me howto 🙂

Thanks, Arni

    • [deleted]

    how can it be usefull if you have no use for it? :-)

    by the way, in MySQL, shouldn't you use "length" instread of "strlen"?

      But how do I use length?
      If I have col named appearance and it contains this: ****

      And I need to do query where length >= '$val'
      How do I create that? 🙂

        Again, sorry 😐

        How would I select something from somewhere where length of col > length of $variable

          • [deleted]

          $query='SELECT *
          FROM table
          WHERE length(field)>'.strlen($var);

          mysql_query($query,$db_connection_id);

            Write a Reply...