|
Posted by Ahmed Saad on 11/27/05 18:00
On 11/26/05, Todd Cary <todd@aristesoftware.com> wrote:
> /* Input a field */
> function input_field($name, $value, $size, $max) {
> echo('<INPUT TYPE="text" NAME="' . $name . '" VALUE="' . $value .
> '" SIZE="' . $size . '" MAXLENGTH="' . $max . '">');
> };
A bit away from your OO question, but IMHO, such function good in
terms of rapid coding but bad if you ever get a graphic/web designer
to redo your designs 'cause he or she will be all (!!) at your php
code.
-ahmed
--
-ahmed
[Back to original message]
|