WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Mobile Dev World

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : function textwrap will wrap text to any desired width using <BR>\n as the default line break. Default wrap width is 80 columns.
Categories : Strings, HTML and PHP, PHP Update Picture
Richard Lynch
Date : Jul 10th 1998
Grade : 1 of 5 (graded 1 times)
Viewed : 13658
File : No file for this code example.
Images : No Images for this code example.
Search : More code by Richard Lynch
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

<?php
        function textwrap($text, $wrap=80, $break='<BR>\n'){
                $len = strlen($text);
                if ($len > $wrap){
                        $h = '';
                        $lastWhite = 0;
                        $lastChar = 0;
                        $lastBreak = 0;
                        while ($lastChar < $len){
                                $char = substr($text, $lastChar, 1);
                                if (($lastChar - $lastBreak > $wrap) &&
($lastWhite > $lastBreak)){
                                        $h .= substr($text, $lastBreak,
($lastWhite - $lastBreak)) . "$break";
                                        $lastChar = $lastWhite + 1;
                                        $lastBreak = $lastChar;
                                }
                                /* You may wish to include other characters as
valid whitespace... */
                                if ($char == ' ' || $char == chr(13) || $char
== chr(10)){
                                        $lastWhite = $lastChar;
                                }
                                $lastChar = $lastChar + 1;
                        }
                        $h .= substr($text, $lastBreak);
                }
                else{
                        $h = $text;
                }
                return $h;
        }
?>

<HTML>
        <HEAD><TITLE>Textwrap Example</TITLE></HEAD>
        <BODY>
                <?php
                        $test = "This is a test. This is only a test. Had
this been a real emergency you would have been instructed to put your head
between your knees and pray.";
                        echo("$test<BR>\n<BR>\n");
                        for ($w = 80; $w > 0; $w = $w - 10){
                                $wrapped = textwrap($test, $w);
                                echo("$w<BR>\n$wrapped<BR>\n<BR>\n");
                        }
                ?>
        </BODY>
</HTML>



string justification align center text
Categories : Strings, PHP, HTML and PHP
Produces browser-safe strings while preserving HTML tags.
Categories : Strings, HTTP, PHP, HTML and PHP
PHP3: Formmail. Just a cgi formmail, but than in PHP. It is easy to use!
Categories : HTML and PHP, Email, PHP, Perl, HTML and PHP
Parse string to find sub-string between two arbitrary strings
Categories : PHP, Strings, HTML and PHP, Arrays
Customizable encoding and decoding strings with security.
Categories : PHP, Strings, HTML and PHP
Pull deliniated text strings into a "SELECT" statement in a form.
Categories : HTML and PHP, PHP, Strings
Text Wrapping
Categories : PHP, HTML and PHP, Strings
TreeView - Finally a working tree view function to be used as you want. Simple create the Table using the code provided and you will be able to have a tree view in your project. Download the zip to get the images.
Categories : PHP, HTML and PHP, Navigation
Using PHP im HTML image tags
Categories : PHP, HTML and PHP, Graphics, Beginner Guides
How to preset a text string in a textarea input field
Categories : HTML, HTML and PHP, PHP, Beginner Guides
PHP mySQL learning example This is a complete program to modify tables in a mySQL database on a nice and neat way.
Categories : PHP, MySQL, Complete Programs, HTML and PHP
Random quote generator using MySQL and PHP. Allows HTML tags inside quotes and features a marker so a sigle quote will not be repeated after consecutive page loads.
Categories : PHP, HTML and PHP, MySQL
Massreplace
Categories : Filesystem, Regexps, Strings, PHP
Function that allows a Javascript cookie to be set after HTML has been outputted to the page.
Categories : PHP, Java Script, Cookies, HTML and PHP
Complete, simple working example of login screen and check on a unique page using php functions, cookies and mysql database.
Categories : PHP, Cookies, MySQL, HTML and PHP, Authentication