Dynamic Text and Trim

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Dynamic Text and Trim

    What exactly does the trim - right option do when selecting dynamic text from a
    database field? I used the option and Dreamweaver changed the code to this:

    <?php echo chop($RS1->Fields('csr_info')); ?>

    But I'm not seeing anything change.

    What i want to do is limit this to the first 100 characters or so when viewing
    the record.

    studiomix54 Guest

  2. Similar Questions and Discussions

    1. Trim Text Along a Path
      I am trying to take a single letter that needs to be trimmed to fit within a circle. Essentially I want to replicate this image that I did in...
    2. load external text to dynamic text field in levels
      Dear Sir I found the Tech Noe Index #16238 is useful in creating dynamically loaded text from external text file. However, the method mentioned...
    3. Dynamic text box within dynamic movie clip
      I'm having a similar problem. On mine I noticed that although the text doesn't show and the border doesn't show, the cursor changes appropriately...
    4. Dynamic text fields. Continuing text over columns
      Hi I'm doing a mock up news paper article over 4 columns in flash mx and the text loads in dynamically. I have 4 dynamic text boxes sitting side...
    5. Dynamic Text Loaded from Text files -> Flash 5 <-
      I was wondering how I can dynamically load text into a text box from a text file using Flash 5. I've seen plenty infos how to do it with Flash MX but...
  3. #2

    Default Re: Dynamic Text and Trim

    .oO(studiomix54)
    >What exactly does the trim - right option do when selecting dynamic text from a
    >database field? I used the option and Dreamweaver changed the code to this:
    >
    > <?php echo chop($RS1->Fields('csr_info')); ?>
    >
    > But I'm not seeing anything change.
    [url]http://www.php.net/rtrim[/url]
    > What i want to do is limit this to the first 100 characters or so when viewing
    >the record.
    [url]http://www.php.net/substr[/url]

    Micha
    Michael Fesser Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139