Home
Backend Development
PHP Tutorial
Examples of php combining forms to implement some simple functions_PHP tutorial



Examples of php combining forms to implement some simple functions_PHP tutorial
html
php
post
one
code
example
Function
copy
accomplish
submit
of
Simple
combine
form
例子一(POST提交表单):
复制代码 代码如下:
Chunkify Form
复制代码 代码如下:
Chunkify Word
$word=$_POST['word'];
$number=$_POST['number'];
$chunks=ceil(strlen($word)/$number);
echo "The $number-letter chunks of '$word' are:
n";
for ($i = 0;$i<$chunks;$i++){
$chunk=substr($word,$i*$number,$number);
printf("%d: %s
n",$i+1,$chunk);
}
?>