making sentances into words...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • qwe
    Confirmed User
    • Jul 2003
    • 2109

    #51
    Originally posted by d-null
    if I understand what you are asking for, this will do it nicely:

    Code:
    <?php 
    if ( ( $file = file( "file.txt" ) ) !== false ) 
    { 
        foreach( $file as $line ) 
        { 
            if (ctype_alpha($line{0}))
    		
            { 
                  echo $line . "<br>"; 
                 
            } 
        } 
    } 
    ?>
    ya that's what I was looking for, thanks alot bro

    Comment

    • d-null
      . . .
      • Apr 2007
      • 13724

      #52
      Originally posted by qwe
      ya that's what I was looking for, thanks alot bro
      no problem


      kind of curious what you have on the go with all these script requests

      __________________

      Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
      Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
      Check out the #1 WordPress SEO Plugin: CyberSEO Suite

      Comment

      Working...