Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
HTML_Table /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
10.phpt
1.65
KB
-rw-r--r--
11.phpt
484
B
-rw-r--r--
12.phpt
546
B
-rw-r--r--
13.phpt
567
B
-rw-r--r--
14.phpt
941
B
-rw-r--r--
15.phpt
735
B
-rw-r--r--
16.phpt
759
B
-rw-r--r--
17.phpt
903
B
-rw-r--r--
18.phpt
423
B
-rw-r--r--
19.phpt
497
B
-rw-r--r--
1.phpt
370
B
-rw-r--r--
20.phpt
545
B
-rw-r--r--
21.phpt
568
B
-rw-r--r--
22.phpt
703
B
-rw-r--r--
23.phpt
621
B
-rw-r--r--
24.phpt
1013
B
-rw-r--r--
25.phpt
621
B
-rw-r--r--
26.phpt
1.27
KB
-rw-r--r--
27.phpt
1.52
KB
-rw-r--r--
28.phpt
1.52
KB
-rw-r--r--
29.phpt
1.14
KB
-rw-r--r--
2.phpt
407
B
-rw-r--r--
30.phpt
1.28
KB
-rw-r--r--
31.phpt
2
KB
-rw-r--r--
3.phpt
494
B
-rw-r--r--
4.phpt
673
B
-rw-r--r--
5.phpt
1.18
KB
-rw-r--r--
6.phpt
1.83
KB
-rw-r--r--
7.phpt
966
B
-rw-r--r--
8.phpt
354
B
-rw-r--r--
9.phpt
1.82
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 29.phpt
--TEST-- 29.phpt: colgroup usage without a col tag --FILE-- <?php // $Id: 29.phpt 297540 2010-04-05 19:58:39Z wiesemann $ require_once 'HTML/Table.php'; $table = new HTML_Table(); $colgroup = ''; $attributes = 'span="3" class="group1"'; $table->setColGroup($colgroup, $attributes); $data[0][] = 'Foo'; $data[0][] = 'Bar'; $data[0][] = 'Test'; $data[1][] = 'Foo'; $data[1][] = 'Bar'; $data[1][] = 'Test'; $data[2][] = 'Foo'; $data[2][] = 'Bar'; $data[2][] = 'Test'; $data[3][] = 'Foo'; $data[3][] = 'Bar'; $data[3][] = 'Test'; $data[4][] = 'Foo'; $data[4][] = 'Bar'; $data[4][] = 'Test'; $data[5][] = 'Foo'; $data[5][] = 'Bar'; $data[5][] = 'Test'; foreach($data as $key => $value) { $table->addRow($value); } echo $table->toHTML(); ?> --EXPECT-- <table> <colgroup span="3" class="group1"></colgroup> <tr> <td>Foo</td> <td>Bar</td> <td>Test</td> </tr> <tr> <td>Foo</td> <td>Bar</td> <td>Test</td> </tr> <tr> <td>Foo</td> <td>Bar</td> <td>Test</td> </tr> <tr> <td>Foo</td> <td>Bar</td> <td>Test</td> </tr> <tr> <td>Foo</td> <td>Bar</td> <td>Test</td> </tr> <tr> <td>Foo</td> <td>Bar</td> <td>Test</td> </tr> </table>
Close