Error Buddy

Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.

If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.

corestack/ phpMyAdmin-2.6.1-pl3/ db_details_export.php [1.6]
001 <?php
002 /* $Id: db_details_export.php,v 2.3 2004/06/13 21:32:16 lem9 Exp $ */
003 // vim: expandtab sw=4 ts=4 sts=4:
004 
005 
006 /**
007  * Gets some core libraries
008  */
009 $sub_part  = '_export';
010 require('./db_details_common.php');
011 $url_query .= '&amp;goto=db_details_export.php';
012 require('./db_details_db_info.php');
013 ?>
014 <!-- Dump of Database -->
015 <?php
016 /**
017  * Displays the form
018  */
019 $export_page_title = $strViewDumpDB;
020 
021 $multi_values = '';
022 if ($num_tables > 1) {
023 
024     $multi_values = '<div align="center"><select name="table_select[]" size="6" multiple="multiple">';
025     $multi_values .= "\n";
026 
027     $i = 0;
028     while ($i < $num_tables) {
029         $table   = $tables[$i]['Name'];
030         if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $table . '|'))) {
031             $is_selected = ' selected="selected"';
032         } else {
033             $is_selected = '';
034         }
035         $table   = htmlspecialchars($table);
036         $multi_values .= '                <option value="' . $table . '"' . $is_selected . '>' . $table . '</option>' . "\n";
037         $i++;
038     } // end while
039     $multi_values .= "\n";
040     $multi_values .= '</select></div>';
041 
042     $checkall_url = 'db_details_export.php?'
043                   . PMA_generate_common_url($db)
044                   . '&amp;goto=db_details_export.php';
045 
046     $multi_values .= '<br />
047             <a href="' . $checkall_url . '&amp;selectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
048             &nbsp;/&nbsp;
049             <a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
050 } elseif ($num_tables == 0) {
051     echo $strDatabaseNoTable;
052     require_once('./footer.inc.php');
053 } // end if
054 
055 $export_type = 'database';
056 require_once('./libraries/display_export.lib.php');
057 
058 /**
059  * Displays the footer
060  */
061 require_once('./footer.inc.php');
062 ?>
063 <?php
064 /* $Id: db_details_export.php,v 2.3 2004/06/13 21:32:16 lem9 Exp $ */
065 // vim: expandtab sw=4 ts=4 sts=4:
066 
067 
068 /**
069  * Gets some core libraries
070  */
071 $sub_part  = '_export';
072 require('./db_details_common.php');
073 $url_query .= '&amp;goto=db_details_export.php';
074 require('./db_details_db_info.php');
075 ?>
076 <!-- Dump of Database -->
077 <?php
078 /**
079  * Displays the form
080  */
081 $export_page_title = $strViewDumpDB;
082 
083 $multi_values = '';
084 if ($num_tables > 1) {
085 
086     $multi_values = '<div align="center"><select name="table_select[]" size="6" multiple="multiple">';
087     $multi_values .= "\n";
088 
089     $i = 0;
090     while ($i < $num_tables) {
091         $table   = $tables[$i]['Name'];
092         if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $table . '|'))) {
093             $is_selected = ' selected="selected"';
094         } else {
095             $is_selected = '';
096         }
097         $table   = htmlspecialchars($table);
098         $multi_values .= '                <option value="' . $table . '"' . $is_selected . '>' . $table . '</option>' . "\n";
099         $i++;
100     } // end while
101     $multi_values .= "\n";
102     $multi_values .= '</select></div>';
103 
104     $checkall_url = 'db_details_export.php?'
105                   . PMA_generate_common_url($db)
106                   . '&amp;goto=db_details_export.php';
107 
108     $multi_values .= '<br />
109             <a href="' . $checkall_url . '&amp;selectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
110             &nbsp;/&nbsp;
111             <a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
112 } elseif ($num_tables == 0) {
113     echo $strDatabaseNoTable;
114     require_once('./footer.inc.php');
115 } // end if
116 
117 $export_type = 'database';
118 require_once('./libraries/display_export.lib.php');
119 
120 /**
121  * Displays the footer
122  */
123 require_once('./footer.inc.php');
124 ?>

Powered by Lucene and the LXR engine.