Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
01a7aa84
authored
2017-02-15 16:55:15 -0500
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit export report
1 parent
1766e96a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
com/MySQLTable/MySQLTable.php
com/MySQLTable/MySQLTable.php
View file @
01a7aa8
...
...
@@ -24,11 +24,11 @@ function array2table($arr,$width = "100%")
echo
"<tr class='"
.
$rclass
.
"'>
\n
"
;
$col
=
1
;
// Are you fucking kidding me with this shit, Kevin???
while
(
false
!==
(
$curr_field
=
current
(
$curr_row
))
)
{
foreach
(
$curr_row
as
$curr_field
)
{
echo
"<td>"
;
echo
$curr_field
.
" "
;
echo
"</td>
\n
"
;
next
(
$curr_row
);
$col
++
;
}
while
(
$col
<=
$num
){
...
...
Please
register
or
sign in
to post a comment