gohaku wrote --- napísal::
Hi everyone,
I would like to know how to handle code breaks or code blocks
that takes up more than two lines.
For readability, I would like to know if there is something like the
following:
function input($type,$size,$name,$value)
{
return "<input type=\"$type\" size=\"$size\" value=\"$value\" >>>
name=\"$name\">";
}
Thanks.
-gohaku
function input($type,$size,$name,$value)
{
return "<input type=\"$type\" size=\"$size\" value=\"$value\" " .
"name=\"$name\">";
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php