viewlog.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <?php
  2. /*
  3. * phpMyEdit - instant MySQL table editor and code generator
  4. *
  5. * phpMyEditSetup.php - interactive table configuration utility (setup)
  6. * ____________________________________________________________
  7. *
  8. * Copyright (c) 1999-2002 John McCreesh <jpmcc@users.sourceforge.net>
  9. * Copyright (c) 2001-2002 Jim Kraai <jkraai@users.sourceforge.net>
  10. * Versions 5.0 and higher developed by Ondrej Jombik <nepto@php.net>
  11. * Copyright (c) 2002-2004 Platon SDG, http://platon.sk/
  12. * All rights reserved.
  13. *
  14. * See README file for more information about this software.
  15. * See COPYING file for license information.
  16. *
  17. * Download the latest version from
  18. * http://platon.sk/projects/phpMyEdit/
  19. */
  20. /* $Platon: phpMyEdit/phpMyEditSetup.php,v 1.34 2004/01/16 19:46:32 nepto Exp $ */
  21. require_once 'auth.php';
  22. ?>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  24. "http://www.w3.org/TR/html4/loose.dtd">
  25. <html>
  26. <head>
  27. <title>phpMyEdit Setup</title>
  28. <style type="text/css">
  29. <!--
  30. body { font-family: "Verdana", "Arial", "Sans-Serif"; text-align: left }
  31. h1 { color: #004d9c; font-size: 13pt; font-weight: bold }
  32. h2 { color: #004d9c; font-size: 11pt; font-weight: bold }
  33. h3 { color: #004d9c; font-size: 11pt; }
  34. p { color: #004d9c; font-size: 9pt; }
  35. table { border: 1px solid #004d9c; border-collapse: collapse; border-spacing: 0px; }
  36. td { border: 1px solid; padding: 3px; color: #004d9c; font-size: 9pt; }
  37. hr
  38. {
  39. height: 1px;
  40. background-color: #000000;
  41. color: #000000;
  42. border: solid #000000 0;
  43. padding: 0;
  44. margin: 0;
  45. border-top-width: 1px;
  46. }
  47. -->
  48. </style>
  49. </head>
  50. <body bgcolor="white">
  51. <?php
  52. $hn = @$HTTP_POST_VARS['hn'];
  53. $un = @$HTTP_POST_VARS['un'];
  54. $pw = @$HTTP_POST_VARS['pw'];
  55. $db = @$HTTP_POST_VARS['db'];
  56. $tb = @$HTTP_POST_VARS['tb'];
  57. $id = @$HTTP_POST_VARS['id'];
  58. $submit = @$HTTP_POST_VARS['submit'];
  59. $options = @$HTTP_POST_VARS['options'];
  60. $baseFilename = @$HTTP_POST_VARS['baseFilename'];
  61. $pageTitle = @$HTTP_POST_VARS['pageTitle'];
  62. $pageHeader = @$HTTP_POST_VARS['pageHeader'];
  63. $HTMLissues = @$HTTP_POST_VARS['HTMLissues'];
  64. $CSSstylesheet = @$HTTP_POST_VARS['CSSstylesheet'];
  65. /* QBUILDER TRAP */
  66. $tableid = $_POST['tableid'];
  67. $hn = $adodb_host;
  68. $un = $adodb_user;
  69. $pw = $adodb_pass;
  70. $db = $adodb_db;
  71. $tb = 'qb_log';
  72. $metaPK = $adodb->MetaPrimaryKeys($tb);
  73. $id = $metaPK[0];
  74. $submit = true;
  75. $options = 1;
  76. $baseFilename = 'phpME_'.htmlspecialchars($tb).'_'.$tableid;
  77. $pageTitle = __('Import.Table Log', null, "MAIN MENU").' "'.$tableid.'"';
  78. $pageHeader = true;
  79. $HTMLissues = true;
  80. $CSSstylesheet = true;
  81. /* QBUILDER TRAP */
  82. $phpExtension = '.php';
  83. if (isset($baseFilename) && $baseFilename != '') {
  84. $phpFile = $baseFilename.$phpExtension;
  85. //$contentFile = $baseFilename.'Content.inc';
  86. $contentFile = $baseFilename.'.php';
  87. } elseif (isset($tb)) {
  88. $phpFile = $tb.$phpExtension;
  89. //$contentFile = $tb.'Content.inc';
  90. $contentFile = $tb.'.php';
  91. } else {
  92. $phpFile = 'index'.$phpExtension;
  93. //$contentFile = 'Content.inc';
  94. $contentFile = 'phpMyEdit-content.php';
  95. }
  96. $buffer = '';
  97. function echo_html($x)
  98. {
  99. echo htmlspecialchars($x),"\n";
  100. }
  101. function echo_buffer($x)
  102. {
  103. global $buffer;
  104. $buffer .= $x."\n";
  105. }
  106. $self = basename($HTTP_SERVER_VARS['PHP_SELF']);
  107. $dbl = @mysql_pconnect($hn, $un, $pw);
  108. if ((!$dbl) or empty($submit)) {
  109. echo '<h1>Please log in to your MySQL database</h1>';
  110. if (!empty($submit)) {
  111. echo '<h2>Sorry - login failed - please try again</h2>'."\n";
  112. }
  113. if (! isset($hn)) {
  114. $hn = 'localhost';
  115. }
  116. echo '
  117. <form action="'.htmlspecialchars($self).'" method="POST">
  118. <table border="1" cellpadding="1" cellspacing="0" summary="Login form">
  119. <tr>
  120. <td>Hostname:</td>
  121. <td><input type="text" name="hn" value="'.htmlspecialchars($hn).'"></td>
  122. </tr><tr>
  123. <td>Username:</td>
  124. <td><input type="text" name="un" value="'.htmlspecialchars($un).'"></td>
  125. </tr><tr>
  126. <td>Password:</td>
  127. <td><input type="password" name="pw" value="'.htmlspecialchars($pw).'"></td>
  128. </tr>
  129. </table><br>
  130. <input type="submit" name="submit" value="Submit">
  131. </form>'."\n";
  132. } else if (! isset($db)) {
  133. $dbs = @mysql_list_dbs($dbl);
  134. $num_dbs = @mysql_num_rows($dbs);
  135. echo '<h1>Please select a database</h1>
  136. <form action="'.htmlspecialchars($self).'" method="POST">
  137. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  138. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  139. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  140. <table border="1" cellpadding="1" cellspacing="1" summary="Database selection">'."\n";
  141. for ($i = 0; $i < $num_dbs; $i++) {
  142. $db = @mysql_db_name($dbs, $i);
  143. $checked = ! strcasecmp($un, $db) ? ' checked' : '';
  144. $db = htmlspecialchars($db);
  145. echo '<tr><td><input'.$checked.' type="radio" name="db" value="'.$db.'"></td><td>'.$db.'</td></tr>'."\n";
  146. }
  147. echo '</table><br>
  148. <input type="submit" name="submit" value="Submit">
  149. <input type="submit" name="cancel" value="Cancel">
  150. </form>'."\n";
  151. } else if (!isset($tb)) {
  152. echo '<h1>Please select a table from database: '.htmlspecialchars($db).'</h1>
  153. <form action="'.htmlspecialchars($self).'" method="POST">
  154. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  155. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  156. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  157. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  158. <table border="1" cellpadding="1" cellspacing="1" summary="Table selection">'."\n";
  159. $tbs = @mysql_list_tables($db, $dbl);
  160. $num_tbs = @mysql_num_rows($tbs);
  161. for ($j = 0; $j < $num_tbs; $j++) {
  162. $tb = @mysql_tablename($tbs, $j);
  163. $tb = htmlspecialchars($tb);
  164. $checked = $j == 0 ? ' checked' : '';
  165. echo '<tr><td><input'.$checked.' type="radio" name="tb" value="'.$tb.'"></td><td>'.$tb.'</td></tr>'."\n";
  166. }
  167. echo '</table><br>
  168. <input type="submit" name="submit" value="Submit">
  169. <input type="submit" name="cancel" value="Cancel">
  170. </form>'."\n";
  171. } else if (!isset($id)) {
  172. echo ' <h1>Please select an identifier from table: '.htmlspecialchars($tb).'</h1>
  173. <p>
  174. This field will be used in change, view, copy and delete operations.<br>
  175. The field should be numeric and must uniquely identify a record.
  176. </p>
  177. <p>
  178. Please note, that there were problems reported by phpMyEdit users
  179. regarding using MySQL reserved word as unique key name (the example for
  180. this is "key" name). Thus we recommend you to use another name
  181. of unique key. Usage of "id" or "ID" should be safe and good idea.
  182. </p>
  183. <form action="'.htmlspecialchars($self).'" method="POST">
  184. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  185. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  186. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  187. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  188. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  189. <table border="1" cellpadding="1" cellspacing="1" summary="Key selection">'."\n";
  190. // <tr><td><input type="radio" name="id" value="">
  191. // <td><i>None</i></td><td><i>No id field required</i></td></tr>
  192. @mysql_select_db($db);
  193. $tb_desc = @mysql_query("DESCRIBE $tb");
  194. $fds = @mysql_list_fields($db,$tb,$dbl);
  195. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != false; $j++) {
  196. $ff = @mysql_field_flags($fds, $j);
  197. strlen($ff) <= 0 && $ff = '---';
  198. $checked = stristr($ff, 'primary_key') ? ' checked' : '';
  199. echo '<tr><td><input',$checked,' type="radio" name="id" value="',htmlspecialchars($fd),'"></td>';
  200. echo '<td>',htmlspecialchars($fd),'</td>';
  201. echo '<td>',htmlspecialchars($ff),'</td>';
  202. $r = @mysql_fetch_array($tb_desc, $j);
  203. }
  204. echo '</table><br>
  205. <input type="submit" name="submit" value="Submit">
  206. <input type="submit" name="cancel" value="Cancel">
  207. </form>'."\n";
  208. } else if (!isset($options)) {
  209. echo '<h1>Please select additional options</h1>
  210. <form action="'.htmlspecialchars($self).'" method="POST">
  211. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  212. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  213. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  214. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  215. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  216. <input type="hidden" name="id" value="'.htmlspecialchars($id).'">
  217. <table border="1" cellpadding="1" cellspacing="1" summary="Additional options">
  218. <tr><td>Base filename</td><td><input type="text" name=baseFilename value ="'.htmlspecialchars($tb).'"></td></tr>
  219. <tr><td>Page title</td><td><input type="text" name=pageTitle value ="'.htmlspecialchars($tb).'"></td></tr>
  220. <tr><td>Page header</td><td><input type="checkbox" name=pageHeader></td></tr>
  221. <tr><td>HTML header &amp; footer</td><td><input type="checkbox" name=HTMLissues></td></tr>
  222. <tr><td>CSS basic stylesheet</td><td><input checked type="checkbox" name=CSSstylesheet></td></tr>
  223. </table><br>
  224. <input type="submit" name="submit" value="Submit">
  225. <input type="submit" name="cancel" value="Cancel">
  226. <input type="hidden" name="options" value="1">
  227. </form>'."\n";
  228. } else {
  229. echo '<h1>Here is your phpMyEdit calling program</h1>'."\n";
  230. echo '<h2>You may now copy and paste it into your PHP editor</h2>'."\n";
  231. if ($pageHeader) {
  232. #echo_buffer('<h3>'.$pageTitle.'</h3>');
  233. }
  234. echo_buffer("<?php
  235. /*
  236. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  237. * of options that can be used with phpMyEdit. To get information about all
  238. * features offered by phpMyEdit, check official documentation. It is available
  239. * online and also for download on phpMyEdit project management page:
  240. *
  241. * http://www.platon.sk/projects/main_page.php?project_id=5
  242. */
  243. // MySQL host name, user name, password, database, and table
  244. \$opts['tb'] = '$tb';
  245. // Name of field which is the unique key
  246. \$opts['key'] = '$id';
  247. // Type of key field (int/real/string/date etc.)");
  248. if ($id == '') {
  249. echo_buffer("\$opts['key_type'] = '';");
  250. } else {
  251. $fds = @mysql_list_fields($db,$tb,$dbl);
  252. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != ''; $j++) {
  253. if ($fd == $id) {
  254. echo_buffer("\$opts['key_type'] = '".@mysql_field_type($fds, $j)."';");
  255. break;
  256. }
  257. }
  258. }
  259. echo_buffer("
  260. // Sorting field(s)
  261. \$opts['sort_field'] = array('$id');
  262. // Number of records to display on the screen
  263. // Value of -1 lists all records in a table
  264. \$opts['inc'] = 25;
  265. // Options you wish to give the users
  266. // A - add, C - change, P - copy, V - view, D - delete,
  267. // F - filter, I - initial sort suppressed
  268. \$opts['options'] = 'F'; // ACDPV
  269. // Number of lines to display on multiple selection filters
  270. \$opts['multiple'] = '4';
  271. // Navigation style: B - buttons (default), T - text links, G - graphic links
  272. // Buttons position: U - up, D - down (default)
  273. \$opts['navigation'] = 'UG'; //'DB';
  274. // Display special page elements
  275. \$opts['display'] = array(
  276. 'form' => true,
  277. 'query' => true,
  278. 'sort' => true,
  279. 'time' => true,
  280. 'tabs' => true
  281. );
  282. \$opts['logtable'] = 'qb_changelog';
  283. /* Get the user's default language and use it if possible or you can
  284. specify particular one you want to use. Refer to official documentation
  285. for list of available languages. */
  286. \$opts['language'] = \$HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  287. /* Table-level filter capability. If set, it is included in the WHERE clause
  288. of any generated SELECT statement in SQL query. This gives you ability to
  289. work only with subset of data from table.
  290. \$opts['filters'] = \"column1 like '%11%' AND column2<17\";
  291. \$opts['filters'] = \"section_id = 9\";
  292. \$opts['filters'] = \"PMEtable0.sessions_count > 200\";
  293. */
  294. \$opts['filters'] = \"tableid = '$tableid'\";
  295. /* Field definitions
  296. Fields will be displayed left to right on the screen in the order in which they
  297. appear in generated list. Here are some most used field options documented.
  298. ['name'] is the title used for column headings, etc.;
  299. ['maxlen'] maximum length to display add/edit/search input boxes
  300. ['trimlen'] maximum length of string content to display in row listing
  301. ['width'] is an optional display width specification for the column
  302. e.g. ['width'] = '100px';
  303. ['mask'] a string that is used by sprintf() to format field output
  304. ['sort'] true or false; means the users may sort the display on this column
  305. ['strip_tags'] true or false; whether to strip tags from content
  306. ['nowrap'] true or false; whether this field should get a NOWRAP
  307. ['required'] true or false; if generate javascript to prevent null entries
  308. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  309. ['options'] optional parameter to control whether a field is displayed
  310. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  311. Another flags are:
  312. R - indicates that a field is read only
  313. W - indicates that a field is a password field
  314. H - indicates that a field is to be hidden and marked as hidden
  315. ['URL'] is used to make a field 'clickable' in the display
  316. e.g.: 'mailto:\$value', 'http://\$value' or '\$page?stuff';
  317. ['URLtarget'] HTML target link specification (for example: _blank)
  318. ['textarea']['rows'] and/or ['textarea']['cols']
  319. specifies a textarea is to be used to give multi-line input
  320. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  321. ['values'] restricts user input to the specified constants,
  322. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  323. ['values']['table'] and ['values']['column'] restricts user input
  324. to the values found in the specified column of another table
  325. ['values']['description'] = 'desc_column'
  326. The optional ['values']['description'] field allows the value(s) displayed
  327. to the user to be different to those in the ['values']['column'] field.
  328. This is useful for giving more meaning to column values. Multiple
  329. descriptions fields are also possible. Check documentation for this.
  330. */
  331. ");
  332. @mysql_select_db($db);
  333. $tb_desc = @mysql_query("DESCRIBE $tb");
  334. $fds = @mysql_list_fields($db, $tb, $dbl);
  335. $num_fds = @mysql_num_fields($fds);
  336. $ts_cnt = 0;
  337. for ($k = 0; $k < $num_fds; $k++) {
  338. $fd = mysql_field_name($fds,$k);
  339. $fm = mysql_fetch_field($fds,$k);
  340. $fn = strtr($fd, '_-.', ' ');
  341. $fn = preg_replace('/(^| +)id( +|$)/', '\\1ID\\2', $fn); // uppercase IDs
  342. $fn = ucfirst($fn);
  343. $row = @mysql_fetch_array($tb_desc);
  344. $label = str_replace('\'','\\\'',$fn);
  345. if ($arrLabel[$fd]) $label = $arrLabel[$fd];
  346. echo_buffer('$opts[\'fdd\'][\''.$fd.'\'] = array('); // )
  347. echo_buffer(" 'name' => '".$label."',");
  348. $auto_increment = strstr($row[5], 'auto_increment') ? 1 : 0;
  349. if (substr($row[1],0,3) == 'set') {
  350. echo_buffer(" 'select' => 'M',");
  351. } else {
  352. echo_buffer(" 'select' => 'T',");
  353. }
  354. if ($auto_increment) {
  355. echo_buffer(" 'options' => 'AVCPDR', // auto increment");
  356. }
  357. // timestamps are read-only
  358. else if (@mysql_field_type($fds, $k) == 'timestamp') {
  359. if ($ts_cnt > 0) {
  360. echo_buffer(" 'options' => 'AVCPD',");
  361. } else { // first timestamp
  362. echo_buffer(" 'options' => 'AVCPDR', // updated automatically (MySQL feature)");
  363. }
  364. $ts_cnt++;
  365. }
  366. echo_buffer(" 'maxlen' => ".@mysql_field_len($fds,$k).',');
  367. // blobs -> textarea
  368. if (@mysql_field_type($fds,$k) == 'blob') {
  369. echo_buffer(" 'textarea' => array(");
  370. echo_buffer(" 'rows' => 5,");
  371. echo_buffer(" 'cols' => 50),");
  372. }
  373. // SETs and ENUMs get special treatment
  374. if ((substr($row[1],0,3) == 'set' || substr($row[1],0,4) == 'enum')
  375. && ! (($pos = strpos($row[1], '(')) === false)) {
  376. $indent = str_repeat(' ', 18);
  377. $outstr = substr($row[1], $pos + 2, -2);
  378. $outstr = explode("','", $outstr);
  379. $outstr = str_replace("''", "'", $outstr);
  380. $outstr = str_replace('"', '\\"', $outstr);
  381. $outstr = implode("\",\n$indent\"", $outstr);
  382. echo_buffer(" 'values' => array(\n$indent\"".$outstr.'"),');
  383. }
  384. // automatic support for Default values
  385. if ($row[4] != '' && $row[4] != 'NULL') {
  386. echo_buffer(" 'default' => '".$row[4]."',");
  387. } else if ($auto_increment) {
  388. echo_buffer(" 'default' => '0',");
  389. }
  390. if (stristr(@mysql_field_flags($fds, $k), 'not_null') && ! $auto_increment) {
  391. echo_buffer(" 'required' => true,");
  392. }
  393. echo_buffer(" 'sort' => true");
  394. //echo_buffer(" 'nowrap' => false,");
  395. echo_buffer(');');
  396. }
  397. echo_buffer("
  398. // Now important call to phpMyEdit
  399. require_once 'phpMyEdit.class.php';
  400. new phpMyEdit(\$opts);
  401. ?>
  402. ");
  403. $css_directive = <<<END
  404. <style type="text/css">
  405. table { border: #004d9c 1px solid; border-collapse: collapse; border-spacing: 0px; width: 100%; }
  406. th { border: #004d9c 1px solid; padding: 4px; background: #add8e6; }
  407. td { border: #004d9c 1px solid; padding: 3px; }
  408. hr { border: 0px solid; padding: 0px; margin: 0px; border-top-width: 1px; height: 1px; }
  409. </style>
  410. END;
  411. $css_directive = <<<END
  412. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  413. END;
  414. if (! $CSSstylesheet) {
  415. $css_directive = '';
  416. }
  417. if ($HTMLissues) {
  418. $htmlbuffer = <<<END
  419. <?php require_once 'auth.php'; ?>
  420. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  421. "http://www.w3.org/TR/html4/loose.dtd">
  422. <html>
  423. <head>
  424. <title>$pageTitle</title>
  425. $css_directive
  426. </head>
  427. <body>
  428. END;
  429. $htmlbuffer .= "
  430. <script language=javascript>
  431. function windowOpen(u,W,H) {
  432. TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
  433. LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
  434. settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
  435. ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
  436. win = window.open(u,'_blank',settings);
  437. return win;
  438. }
  439. function exporttable(tb) {
  440. //windowOpen('exporttable.php?tableid='+tb, 600, 200);
  441. location.href = ('exporttable.php?tableid='+tb);
  442. }
  443. </script>
  444. <h3>$pageTitle
  445. <input type=button value='".__('Export CSV')."' onClick='exporttable(\"$tb\")'>
  446. </h3>
  447. ";
  448. $buffer = $htmlbuffer."\n" . $buffer;
  449. } else if ($CSSstylesheet) {
  450. $buffer = $css_directive . $buffer;
  451. }
  452. if ($HTMLissues) {
  453. $buffer .= "</body>\n";
  454. $buffer .= "</html>\n";
  455. }
  456. // write the content include file
  457. echo 'Trying to write content file to: <b>'.'./'.$contentFile.'</b><br>'."\n";
  458. $filehandle = @fopen('./'.$contentFile, 'w+');
  459. if ($filehandle) {
  460. fwrite($filehandle, $buffer);
  461. flush($filehandle);
  462. fclose($filehandle);
  463. echo 'phpMyEdit content file written successfully<br>';
  464. /* QBUILDER TRAP */
  465. echo "
  466. <script language=javascript>
  467. location.href = '$contentFile';
  468. </script>
  469. ";
  470. /* QBUILDER TRAP */
  471. } else {
  472. echo 'phpMyEdit content file was NOT written due to inssufficient privileges.<br>';
  473. echo 'Please copy and paste content listed below to <i>'.'./'.$contentFile.'</i> file.';
  474. }
  475. echo '<br><hr>';
  476. echo '<pre>';
  477. echo_html($buffer);
  478. echo '</pre><hr>'."\n";
  479. }
  480. ?>
  481. </body>
  482. </html>