Hello I am a new member. I have a question about form page and confirmation page. The question is how to get word count in confirmation page from form page by PHP. The program is as below which is part of whole page. Function of getting word count is: str_word_count($_POST["sentence"] I am waiting for fast answer from a member. [form page, by html] <form name="namae" method="post" action=""> <table class="formTable"> <tr> <th>language combination</th> <td><select name=" language combination "> <option value="" selected> ----</option> <option value="japanese→english"> japanese→english </option> <option value=" english→japanese "> english→japanese </option> </select></td> <td><input size="30" type="hidden" name="word_count" /></td> </tr> <tr> <th> sentence </th> <td><textarea name="sentence" rows="4" cols="40"></textarea></td></tr> </table> [confirmation page, by php] function confirmOutput($arr){ global $hankaku,$hankaku_array; $html = ''; foreach($arr as $key => $val) { $out = ''; if(is_array($val)){ foreach($val as $key02 => $item){ if(is_array($item)){ $out .= connect2val($item); }else{ $out .= $item . ', '; } } $out = rtrim($out,', '); }else{ $out = $val; } if(get_magic_quotes_gpc()) { $out = stripslashes($out); } $out = nl2br(h($out)); $key = h($key); ------ Above But in all columns word count was added. I need word count only in textarea. Saneyuki Hori |