Additional option for submit_add_or_update helpers.
[fa-stable.git] / includes / ui / ui_input.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 //
13 // Sets local POST value and adds Value to ajax posting if needed
14 //
15 /*function set_post($name, $value, $ajax_trigger=true) {
16     global $Ajax;
17
18     $_POST[$name] = $value;
19     if ($ajax_trigger) $Ajax->activate($name);
20 }
21 */
22 //------------------------------------------------------------------------------
23 //    Seek for _POST variable with $prefix.
24 //    If var is found returns variable name with prefix stripped,
25 //    and null or -1 otherwise.
26 //
27 function find_submit($prefix, $numeric=true)
28 {
29
30     foreach($_POST as $postkey=>$postval )
31     {
32                 if (strpos($postkey, $prefix) === 0)
33                 {
34                         $id = substr($postkey, strlen($prefix));
35                         return $numeric ? (int)$id : $id;
36                 }
37     }
38     return $numeric ? -1 : null;
39 }
40 //------------------------------------------------------------------------------
41 //
42 // Helper function for simple db table editor pages
43 //
44 function simple_page_mode($numeric_id = true)
45 {
46         global $Ajax, $Mode, $selected_id;
47
48         $default = $numeric_id ? -1 : '';
49         $selected_id = get_post('selected_id', $default);
50         foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET') as $m) {
51                 if (isset($_POST[$m])) {
52                         $Ajax->activate('_page_body');
53                         if ($m == 'RESET') 
54                                 $selected_id = $default;
55                         $Mode = $m; return;
56                 }
57         }
58         foreach (array('Edit', 'Delete') as $m) {
59                 foreach ($_POST as $p => $pvar) {
60                         if (strpos($p, $m) === 0) {
61 //                              $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.'));
62                                 unset($_POST['_focus']); // focus on first form entry
63                                 $selected_id = quoted_printable_decode(substr($p, strlen($m)));
64                                 $Ajax->activate('_page_body');
65                                 $Mode = $m;
66                                 return;
67                         }
68                 }
69         }
70         $Mode = '';
71 }
72
73 //------------------------------------------------------------------------------
74 //
75 //      Read numeric value from user formatted input
76 //
77 function input_num($postname=null, $dflt=null)
78 {
79         if (!isset($_POST[$postname]) || $_POST[$postname] == "")
80                 return $dflt;
81
82     return user_numeric($_POST[$postname]);
83 }
84
85 //---------------------------------------------------------------------------------
86
87 function hidden($name, $value=null, $echo=true)
88 {
89         global $Ajax;
90         
91         if ($value === null) 
92                 $value = get_post($name);
93         
94         $ret = "<input type=\"hidden\" name=\"$name\" value=\"$value\">";
95         $Ajax->addUpdate($name, $name, $value);
96         if ($echo)
97                 echo $ret."\n";
98         else
99                 return $ret;
100 }
101 /*
102         Universal submit form button.
103         $atype - type of submit:
104          Normal submit:
105                 false - normal button; optional icon
106                 null  - button visible only in fallback mode; optional icon
107          Ajax submit:
108                 true      - standard button; optional icon
109                 'process' - displays progress bar during call; optional icon
110                 'default' - default form submit on Ctrl-Enter press; dflt ICON_OK icon
111                 'cancel'  - cancel form entry on Escape press; dflt ICON_CANCEL
112 */
113 function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=false)
114 {
115         global $path_to_root;
116
117         $aspect='';
118         if (!is_bool($atype)) // necessary: switch uses '=='
119           switch($atype) {
120                 case 'process':
121                         $aspect = " aspect='process'"; break;
122                 case 'default':
123                         $aspect = " aspect='default'"; 
124                         if ($icon===false) $icon=ICON_SUBMIT; break;
125                 case 'cancel':
126                         $aspect = " aspect='cancel'"; 
127                         if ($icon===false) $icon=ICON_ESCAPE; break;
128                 case null: 
129                         $aspect = fallback_mode() ? 
130                                 " aspect='fallback'" : " style='display:none;'"; break;
131          }
132
133         default_focus($name);
134         $submit_str = "<button class=\""
135             .($atype ? 'ajaxsubmit' : 'inputsubmit')
136                 ."\" type=\"submit\""
137                 .$aspect
138             ." name=\"$name\"  id=\"$name\" value=\"$value\""
139             .($title ? " title='$title'" : '')
140             .">"
141                 .($icon ? "<img src='$path_to_root/themes/".user_theme()."/images/$icon'>" : '')
142                 ."<span>$value</span>"
143                 ."</button>\n";
144         if ($echo)
145                 echo $submit_str;
146         else
147                 return $submit_str;
148 }
149
150 function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false)
151 {
152         echo "<center>";
153         submit($name, $value, $echo, $title, $async, $icon);
154         echo "</center>";
155 }
156
157 function submit_center_first($name, $value, $title=false, $async=false, $icon=false)
158 {
159         echo "<center>";
160         submit($name, $value, true, $title, $async, $icon);
161         echo "&nbsp;";
162 }
163
164 function submit_center_last($name, $value, $title=false, $async=false, $icon=false)
165 {
166         echo "&nbsp;";
167         submit($name, $value, true, $title, $async, $icon);
168         echo "</center>";
169 }
170 /*
171         For following controls:
172         'both' - use both Ctrl-Enter and Escape hotkeys 
173         'cancel' - apply to 'RESET' button
174 */
175 function submit_add_or_update($add=true, $title=false, $async=false)
176 {
177         $cancel = $async;
178
179         if ($async === 'both') {
180                 $async = 'default'; $cancel = 'cancel';
181         } 
182         else if ($async === 'default')
183                 $cancel = true;
184         else if ($async === 'cancel')
185                 $async = true;
186         
187         if ($add)
188                 submit('ADD_ITEM', _("Add new"), true, $title, $async);
189         else {
190                 submit('UPDATE_ITEM', _("Update"), true, $title, $async);
191                 submit('RESET', _("Cancel"), true, $title, $cancel);
192         }
193 }
194
195 function submit_add_or_update_center($add=true, $title=false, $async=false)
196 {
197         echo "<center>";
198         submit_add_or_update($add, $title, $async);
199         echo "</center>";
200 }
201
202 /*
203 function submit_add_or_update_row($add=true)
204 {
205         echo "<tr><td colspan=99 align=center>";
206         submit_add_or_update($add);
207         echo "</td></tr>\n";
208 }
209 */
210 function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false)
211 {
212         echo "<tr>";
213         if ($right)
214                 echo "<td>&nbsp;</td>\n";
215         echo "<td $extra>";
216         submit_add_or_update($add, $title, $async);
217         echo "</td></tr>\n";
218 }
219
220 function submit_cells($name, $value, $extra="", $title=false, $async=false)
221 {
222         echo "<td $extra>";
223         submit($name, $value, true, $title, $async);
224         echo "</td>\n";
225 }
226
227 function submit_row($name, $value, $right=true, $extra="", $title=false, $async=false)
228 {
229         echo "<tr>";
230         if ($right)
231                 echo "<td>&nbsp;</td>\n";
232         submit_cells($name, $value, $extra, $title, $async);
233         echo "</tr>\n";
234 }
235
236 function submit_return($name, $value, $title=false, $async=false)
237 {
238         if (count($_SESSION['Context'])) {
239                 submit($name, $value, true, $title, $async);
240         }
241 }
242 //-----------------------------------------------------------------------------------
243
244 function set_icon($icon, $title=false)
245 {
246         global $path_to_root;
247         return "<img src='$path_to_root/themes/".user_theme()."/images/$icon' width='14' height='14' border='0'".($title ? " title='$title'" : "")." />\n";     
248 }
249
250 function button($name, $value, $title=false, $icon=false)
251 {
252         // php silently changes dots,spaces,'[' and characters 128-159
253         // to underscore in POST names, to maintain compatibility with register_globals
254         if (user_graphic_links() && $icon)
255         {
256                 if ($value == _("Delete")) // Helper during implementation
257                         $icon = ICON_DELETE;
258                 return "<button type='submit' class='editbutton' name='".
259                         htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B'))).
260                         "' value='1'" . ($title ? " title='$title'":" title='$value'")." />".set_icon($icon)."\n";
261         }
262         else
263                 return "<input type='submit' class='editbutton' name='"
264                         .htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B')))
265                         ."' value='$value'"
266                         .($title ? " title='$title'":'')." />\n";
267 }
268
269 function button_cell($name, $value, $title=false, $icon=false)
270 {
271         echo "<td>";
272         echo button($name, $value, $title, $icon);
273         echo "</td>";
274 }
275
276 function delete_button_cell($name, $value, $title=false)
277 {
278         button_cell($name, $value, $title, ICON_DELETE);
279 }
280
281 function edit_button_cell($name, $value, $title=false)
282 {
283         button_cell($name, $value, $title, ICON_EDIT);
284 }
285 //-----------------------------------------------------------------------------------
286
287 function check_value($name)
288 {
289         if (!isset($_POST[$name]))
290                 return 0;
291         return 1;
292 }
293
294 function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false)
295 {
296         global $Ajax;
297
298         $str = '';      
299         default_focus($name);
300         if ($label)
301                 $str .= $label . "  ";
302         if ($submit_on_change !== false) {
303                 if ($submit_on_change === true)
304                         $submit_on_change = 
305                                 "JsHttpRequest.request(\"_{$name}_update\", this.form);";
306         }
307         if ($value === null)
308                 $value = get_post($name,0);
309
310         $str .= "<input"
311             .($value == 1 ? ' checked':'')
312             ." type='checkbox' name='$name' value='1'"
313             .($submit_on_change ? " onclick='$submit_on_change'" : '')
314             .($title ? " title='$title'" : '')
315             ." >\n";
316
317         $Ajax->addUpdate($name, $name, $value);
318         return $str;
319 }
320
321 function check($label, $name, $value=null, $submit_on_change=false, $title=false)
322 {
323         echo checkbox($label, $name, $value, $submit_on_change, $title);
324 }
325
326 function check_cells($label, $name, $value, $submit_on_change=false, $title=false)
327 {
328         if ($label != null)
329                 echo "<td>$label</td>\n";
330         echo "<td>";
331         echo check(null, $name, $value, $submit_on_change, $title);
332         echo "</td>";
333 }
334
335 function check_row($label, $name, $value, $submit_on_change=false, $title=false)
336 {
337         echo "<tr>";
338         echo check_cells($label, $name, $value, $submit_on_change, $title);
339         echo "</tr>\n";
340 }
341
342 //-----------------------------------------------------------------------------------
343
344 function labelheader_cell($label, $params="")
345 {
346         echo "<td class='tableheader' $params>$label</td>\n";
347 }
348
349 function label_cell($label, $params="", $id=null)
350 {
351     global $Ajax;
352
353         if(isset($id))
354         {
355             $params .= " id='$id'";
356             $Ajax->addUpdate($id, $id, $label);
357         }
358         echo "<td $params>$label</td>\n";
359
360         return $label;
361 }
362
363 function email_cell($label, $params="", $id=null)
364 {
365         label_cell("<a href='mailto:$label'>$label</a>", $params, $id);
366 }
367
368 function amount_cell($label, $bold=false, $params="", $id=null)
369 {
370         if ($bold)
371                 label_cell("<b>".price_format($label)."</b>", "nowrap align=right ".$params, $id);
372         else
373                 label_cell(price_format($label), "nowrap align=right ".$params, $id);
374 }
375
376 function percent_cell($label, $bold=false, $id=null)
377 {
378         if ($bold)
379                 label_cell("<b>".percent_format($label)."</b>", "nowrap align=right", $id);
380         else
381                 label_cell(percent_format($label), "nowrap align=right", $id);
382 }
383 // 2008-06-15. Changed
384 function qty_cell($label, $bold=false, $dec=null, $id=null)
385 {
386         if (!isset($dec))
387                 $dec = get_qty_dec();
388         if ($bold)
389                 label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
390         else
391                 label_cell(number_format2($label, $dec), "nowrap align=right", $id);
392 }
393
394 function label_cells($label, $value, $params="", $params2="", $id='')
395 {
396         if ($label != null)
397                 echo "<td $params>$label</td>\n";
398         label_cell($value, $params2, $id);
399 }
400
401 function label_row($label, $value, $params="", $params2="", $leftfill=0, $id='')
402 {
403         echo "<tr>";
404         label_cells($label, $value, $params, $params2, $id);
405         if ($leftfill!=0)
406                 echo "<td colspan=$leftfill></td>";
407         echo "</tr>\n";
408 }
409
410 //-----------------------------------------------------------------------------------
411
412 function text_cells($label, $name, $value=null, $size="", $max="", $title=false, $params="", $post_label="", $disabled="")
413 {
414         global $Ajax;
415
416         default_focus($name);
417         if ($label != null)
418                 label_cell($label, $params);
419         echo "<td>";
420
421         if ($value === null)
422                 $value = get_post($name);
423         echo "<input $disabled type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\""
424             .($title ? " title='$title'" : '')
425             .">";
426
427         if ($post_label != "")
428                 echo " " . $post_label;
429
430         echo "</td>\n";
431         $Ajax->addUpdate($name, $name, $value);
432 }
433
434 function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null, $params=null, $post_label=null, $submit_on_change=false)
435 {
436         global $Ajax;
437
438         default_focus($name);
439         if (!isset($_POST[$name]) || $_POST[$name] == "")
440         {
441                 if ($init)
442                         $_POST[$name] = $init;
443                 else
444                         $_POST[$name] = "";
445         }
446         if ($label != null)
447                 label_cell($label, $params);
448
449         if (!isset($max))
450                 $max = $size;
451
452         echo "<td>";
453         $class = $submit_on_change ? 'class="searchbox"' : '';
454         echo "<input $class type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"" . $_POST[$name]. "\""
455          .($title ? " title='$title'": '')." >";
456
457         if ($post_label)
458                 echo " " . $post_label;
459
460         echo "</td>\n";
461         $Ajax->addUpdate($name, $name, $_POST[$name]);
462 }
463
464 function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
465 {
466         echo "<tr>";
467
468         text_cells($label, $name, $value, $size, $max, $title, $params, $post_label);
469
470         echo "</tr>\n";
471 }
472
473 //-----------------------------------------------------------------------------------
474
475 function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
476 {
477         echo "<tr>";
478
479         text_cells_ex($label, $name, $size, $max, $value, $title, $params, $post_label);
480
481         echo "</tr>\n";
482 }
483
484 //-----------------------------------------------------------------------------------
485 function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
486 {
487         text_row("<a href='Mailto:".$_POST[$name]."'>$label</a>", $name, $value, $size, $max, $title, $params, $post_label);
488 }
489
490 function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
491 {
492         text_row_ex("<a href='Mailto:".$_POST[$name]."'>$label</a>", $name, $size, $max, $title, $value, $params, $post_label);
493 }
494
495 function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
496 {
497         text_row("<a href='".$_POST[$name]."' target='_blank'>$label</a>", $name, $value, $size, $max, $title, $params, $post_label);
498 }
499
500 function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
501 {
502         text_row_ex("<a href='".$_POST[$name]."' target='_blank'>$label</a>", $name, $size, $max, $title, $value, $params, $post_label);
503 }
504
505 //-----------------------------------------------------------------------------------
506
507 function date_cells($label, $name, $title = null, $init=null, $inc_days=0, 
508         $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false)
509 {
510         global $use_date_picker, $path_to_root;
511         if (!isset($_POST[$name]) || $_POST[$name] == "")
512         {
513                 if (!$init)
514                 {
515                         if ($inc_years == 1001)
516                                 $_POST[$name] = null;
517                         else
518                         {
519                                 $dd = Today();
520                                 if ($inc_days != 0)
521                                         $dd = add_days($dd, $inc_days);
522                                 if ($inc_months != 0)
523                                         $dd = add_months($dd, $inc_months);
524                                 if ($inc_years != 0)
525                                         $dd = add_years($dd, $inc_years);
526                                 $_POST[$name] = $dd;
527                         }
528                 }
529                 else
530                         $_POST[$name] = $init;
531         }
532         if ($use_date_picker)
533                 $post_label = "<a tabindex='-1' href=\"javascript:date_picker(document.getElementsByName('$name')[0]);\">"
534                 . "     <img src='$path_to_root/themes/default/images/cal.gif' width='16' height='16' border='0' alt='"._('Click Here to Pick up the date')."'></a>\n";
535         else
536                 $post_label = "";
537         text_cells_ex($label, $name, 9, 12, $_POST[$name], $title, $params, $post_label, $submit_on_change);
538 }
539
540 function date_row($label, $name, $title=null, $init=null, $inc_days=0, $inc_months=0, 
541         $inc_years=0, $params=null, $submit_on_change=false)
542 {
543         echo "<tr>";
544         date_cells($label, $name, $title, $init, $inc_days, $inc_months, 
545                 $inc_years, $params, $submit_on_change);
546         echo "</tr>\n";
547 }
548
549 //-----------------------------------------------------------------------------------
550
551 function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false)
552 {
553         text_cells_ex($label, $name, 16, 18, $init, $title, $params, null, $submit_on_change);
554 }
555
556 //-----------------------------------------------------------------------------------
557
558 function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false)
559 {
560         echo "<tr>";
561         ref_cells($label, $name, $title, $init, null, $submit_on_change);
562         echo "</tr>\n";
563 }
564
565 //-----------------------------------------------------------------------------------
566
567 function percent_row($label, $name, $init=null)
568 {
569
570         if (!isset($_POST[$name]) || $_POST[$name]=="")
571         {
572                 $_POST[$name] = $init == null ? '' : $init;
573         }
574
575         small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());
576 }
577
578 function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=null, $post_label=null, $dec=null)
579 {
580         global $Ajax;
581
582         if (!isset($dec))
583                 $dec = user_price_dec();
584         if (!isset($_POST[$name]) || $_POST[$name] == "")
585         {
586                 if ($init !== null)
587                         $_POST[$name] = $init;
588                 else
589                         $_POST[$name] = '';
590         }
591         if ($label != null)
592                 label_cell($label, $params);
593
594         if (!isset($max))
595                 $max = $size;
596
597         if ($label != null)
598                 echo "<td>";
599         else
600                 echo "<td align='right'>";
601
602         echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
603
604         if ($post_label) {
605                 echo "<span id='_{$name}_label'> $post_label</span>";
606                 $Ajax->addUpdate($name, '_'.$name.'_label', $post_label);
607         }
608         echo "</td>\n";
609         $Ajax->addUpdate($name, $name, $_POST[$name]);
610         $Ajax->addAssign($name, $name, 'dec', $dec);
611 }
612
613
614 //-----------------------------------------------------------------------------------
615
616 function amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
617 {
618         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
619 }
620
621 function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
622 {
623         echo "<tr>";
624         amount_cells($label, $name, $init, $params, $post_label, $dec);
625         echo "</tr>\n";
626 }
627
628 function small_amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
629 {
630         echo "<tr>";
631         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
632         echo "</tr>\n";
633 }
634
635 //-----------------------------------------------------------------------------------
636
637 function qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
638 {
639         if (!isset($dec))
640                 $dec = user_qty_dec();
641
642         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
643 }
644
645 function qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
646 {
647         if (!isset($dec))
648                 $dec = user_qty_dec();
649
650         echo "<tr>";
651         amount_cells($label, $name, $init, $params, $post_label, $dec);
652         echo "</tr>\n";
653 }
654
655 function small_qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
656 {
657         if (!isset($dec))
658                 $dec = user_qty_dec();
659
660         echo "<tr>";
661         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
662         echo "</tr>\n";
663 }
664
665 //-----------------------------------------------------------------------------------
666
667 function small_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
668 {
669         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
670 }
671
672 //-----------------------------------------------------------------------------------
673
674 function small_qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
675 {
676         if (!isset($dec))
677                 $dec = user_qty_dec();
678         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
679 }
680
681 //-----------------------------------------------------------------------------------
682
683 function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="")
684 {
685         global $Ajax;
686
687         default_focus($name);
688         if ($label != null)
689                 echo "<td $params>$label</td>\n";
690         if ($value == null)
691                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
692         echo "<td><textarea name='$name' cols='$cols' rows='$rows'"
693         .($title ? " title='$title'" : '')
694         .">$value</textarea></td>\n";
695         $Ajax->addUpdate($name, $name, $value);
696 }
697
698 function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="")
699 {
700         echo "<tr>";
701         textarea_cells($label, $name, $value, $cols, $rows, $title, $params);
702         echo "</tr>\n";
703 }
704
705 //-----------------------------------------------------------------------------------
706 /*
707 function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $input_value)
708 {
709         global $Ajax;
710
711         default_focus($name);
712         echo "<tr><td>$label</td>\n";
713         echo "<td>";
714
715         if ($value == null)
716                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
717         echo "<input type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\">   ";
718
719         submit($input_name, $input_value);
720
721         echo "</td></tr>\n";
722         $Ajax->addUpdate($name, $name, $value);
723 }
724 */
725 //-----------------------------------------------------------------------------------
726
727
728 ?>