Simple Character Counter using php

This is one of the simple method to calculate how many Characters in the particular string textarea. It will calculate the all the characters within the textarea including the space. We will done this concept with the help of php mb_strlen() function.

I used here is one of the simple form, in this form contain one textarea field and one submit button after the form post i stored the full string of the textarea into the $count variable then i used the mb_strlen() function to that. Then i displayed the count in h1 tag. Check out the below demo page how it works. I hope this is helpful.

simple-character-counter-using-php


Code for Character counter using php:

<?php
if(isset($_POST['submit']))
{
$count  = $_POST['count'];
$word_count = mb_strlen($count);
echo '<h1 style="color:green;">Total Characters: &nbsp; ', $word_count; echo '</h1>';
}
?>
<style>
.count
{
background-color:green;
color:#fff;
border:2px solid green;
padding:15px;
width:200px;
margin-top:15px;
}
textarea
{
width:100%;
}
</style>
<html>
<head>
<title>Character counter using php</title>
</head>
<body>
<h1>Character counter using php mb_strlen() function:</h1>
<form action="" method="post">
<textarea name="count"  rows="18"> </textarea><br/>
<input type="submit" name="submit" value="count" class="count" />
</form>
<h1><a href="http://www.sanwebcorner.com">www.sanwebcorner.com</a></h1>
</body>
</html>

Post a Comment

0 Comments