2 /* vim: set expandtab sw=4 ts=4 sts=4: */
6 * This is the parser bug decoder system
7 * Throw the bug data in teh query box, and hit submit for output.
9 * Copyright 2002 Robin Johnson <robbat2@users.sourceforge.net>
12 * @package phpMyAdmin-debug
19 <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
20 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
21 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="en-US" lang
="en-US">
24 <link rel
="icon" href
="./favicon.ico" type
="image/x-icon" />
25 <link rel
="shortcut icon" href
="./favicon.ico" type
="image/x-icon" />
26 <meta http
-equiv
="Content-Type" content
="text/html; charset=iso-8859-1" />
27 <title
>phpMyAdmin
- Parser BUG decoder
</title
>
28 <style type
="text/css">
31 font
-family
: Arial
, Helvetica
, sans
-serif
;
35 font
-family
: Verdana
, Arial
, Helvetica
, sans
-serif
;
45 <body bgcolor
="#FFFFFF">
46 <h1
>Parser BUG decoder
</h1
>
49 <form method
="post" action
="./decode_bug.php">
50 <input type
="hidden" name
="bar" value
="<?php echo rand(); ?>" />
51 Encoded bug report
:<br
/>
52 <textarea name
="bug_encoded" cols
="72" rows
="10"></textarea
>
54 <input type
="submit" />
60 * If the form has been submitted -> decodes the bug report
64 * Display the decoded bug report in ASCII format
66 * @param string the text data
68 * @return string the text enclosed by "<pre>...</pre>" tags
72 function PMA_printDecodedBug($textdata)
74 return '<pre>' . htmlspecialchars($textdata) . '</pre><br />';
75 } // end of the "PMA_printDecodedBug()" function
78 if (!empty($_POST) && isset($_POST['bug_encoded'])) {
79 $bug_encoded = $_POST['bug_encoded'];
82 if (!empty($bug_encoded)) {
83 if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
84 $bug_encoded = stripslashes($bug_encoded);
87 $bug_encoded = ereg_replace('[[:space:]]', '', $bug_encoded);
88 $bug_decoded = base64_decode($bug_encoded);
89 if (substr($bug_encoded, 0, 2) == 'eN') {
90 if (function_exists('gzuncompress')) {
91 $result = PMA_printDecodedBug(gzuncompress($bug_decoded));
93 $result = 'Error: "gzuncompress()" is unavailable!' . "\n";
96 $result = PMA_printDecodedBug($bug_decoded);
97 } // end if... else...
99 echo '<p>Decoded:</p>' . "\n"