Werbung
Werbung
Werbung
Archive
Folge uns auf Twitter
Werbung

Jede Menge neue Twitter Follower bekommen. Die Software hat einen kostenlosen Trial Mode, der bis zu 250 Follower bringt.

Willkommen
Willkommen im PHP Archiv Blog! Hier gibts Infos zum Thema PHP Codeschnipsel und Tipps. Bei unserem Projekt phparchiv.de, finden Sie über 5700 Scripte.

Worte mit Hilfe von PHP zählen

Worte mit Hilfe von explode zählen

<style type="text/css"> 
body{ 
display: inline; 
font-family: courier; 
font-size: 160%; 
font-style: normal; 
font-weight:1024; 
color: #68677C 
} 
</style> 

<center> 

<table width=80 border=2><center> 
    <tr> 
        <td><center> 
        Count Words<br> 
        Enter the word / phrase in the form below 

&lt;form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?&gt;"&gt; 

&lt;input type="text" size="75" name="text"&gt; 

&lt;input type="submit" size="12" value=" hasil" name="submit"&gt; 

&lt;p&gt; 
&lt;table bgcolor="#000000"&gt; 
  &lt;tr&gt; 
    &lt;td&gt; 
&lt;? 
$text = $_POST['text']; 
$count = count(explode(" ", $text)); 
 if ($text == "" ) { 
echo ""; 
} 
else 

 echo"&lt;strong&gt;&lt;font color=red&gt;$text&lt;/strong&gt;&lt;/font&gt;   &lt;/td&gt; 
  &lt;/tr&gt;  
&lt;/table&gt;&lt;/br&gt; words typed is $count "; ?&gt; 

&lt;/p&gt; 
&lt;/td&gt; 
    &lt;/tr&gt; 
    &lt;/form&gt;

Quelle

Hinterlasse eine Antwort

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind markiert *

*

Du kannst folgende HTML-Tags benutzen: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>