viewdata2.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824
  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. require_once 'function.php';
  23. ?>
  24. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  25. "http://www.w3.org/TR/html4/loose.dtd">
  26. <html>
  27. <head>
  28. <title>phpMyEdit Setup</title>
  29. <style type="text/css">
  30. <!--
  31. body { font-family: "Verdana", "Arial", "Sans-Serif"; text-align: left }
  32. h1 { color: #004d9c; font-size: 13pt; font-weight: bold }
  33. h2 { color: #004d9c; font-size: 11pt; font-weight: bold }
  34. h3 { color: #004d9c; font-size: 11pt; }
  35. p { color: #004d9c; font-size: 9pt; }
  36. table { border: 1px solid #004d9c; border-collapse: collapse; border-spacing: 0px; }
  37. td { border: 1px solid; padding: 3px; color: #004d9c; font-size: 9pt; }
  38. hr
  39. {
  40. height: 1px;
  41. background-color: #000000;
  42. color: #000000;
  43. border: solid #000000 0;
  44. padding: 0;
  45. margin: 0;
  46. border-top-width: 1px;
  47. }
  48. -->
  49. </style>
  50. </head>
  51. <body bgcolor="white">
  52. <?php
  53. openLogger(basename(__FILE__));
  54. $hn = @$HTTP_POST_VARS['hn'];
  55. $un = @$HTTP_POST_VARS['un'];
  56. $pw = @$HTTP_POST_VARS['pw'];
  57. $db = @$HTTP_POST_VARS['db'];
  58. $tb = @$HTTP_POST_VARS['tb'];
  59. $id = @$HTTP_POST_VARS['id'];
  60. $submit = @$HTTP_POST_VARS['submit'];
  61. $options = @$HTTP_POST_VARS['options'];
  62. $baseFilename = @$HTTP_POST_VARS['baseFilename'];
  63. $pageTitle = @$HTTP_POST_VARS['pageTitle'];
  64. $pageHeader = @$HTTP_POST_VARS['pageHeader'];
  65. $HTMLissues = @$HTTP_POST_VARS['HTMLissues'];
  66. $CSSstylesheet = @$HTTP_POST_VARS['CSSstylesheet'];
  67. /* QBUILDER TRAP */
  68. #$rs = $adodb->Execute("SELECT * FROM qb_config ".
  69. #" WHERE id = '".intval($_GET['id'])."' LIMIT 1");
  70. #if (!$rs || $rs->EOF) die("Error: id '".$_GET['id']."' does not exist.");
  71. $hn = $adodb_host;
  72. $un = $adodb_user;
  73. $pw = $adodb_pass;
  74. $db = $adodb_db;
  75. #$tb = $rs->fields['tableid'];
  76. $tb = $_POST['tableid'];
  77. /* Step:
  78. - change from primary key to unique key
  79. - add id int auto_increment as primary key,
  80. if failed change to id1 or id2 or ... so on
  81. - insert into temp (original column) select * from original
  82. - trigger onadd, onupdate, ondelete
  83. oh no ... so hard :(
  84. view report do also
  85. - create table temp as <sql>
  86. - add id int as pk (idem)
  87. - insert into temp (idem)
  88. - trigger onupdate
  89. */
  90. $metaTables = $adodb->MetaTables();
  91. $tableid = $tb;
  92. /*
  93. ## <table>_FLAG ##
  94. $rs = $adodb->Execute("SELECT * FROM qb_config ".
  95. " WHERE tableid = ? ", array($tableid));
  96. if (!$rs->EOF) {
  97. $sqlCreate = $rs->fields['sqlcreate'];
  98. if (! is_int(array_search($tableid."_flag", $metaTables))) {
  99. $rs = $adodb->Execute("CREATE TABLE ".$tableid."_flag ".
  100. " ( ".$sqlCreate." ) ");
  101. if (!$rs) return $logger->error($adodb->ErrorMsg());
  102. }
  103. } else {
  104. return $logger->error("tableid '".$tableid."' not found on qb_config! ".
  105. " ".$adodb->ErrorMsg());
  106. }
  107. ## CHECK COLUMN ##
  108. $metaCol = $adodb->MetaColumns($tableid."_flag");
  109. if (!is_array($metaCol)) {
  110. return $logger->error("Columns must be defined on ".$tableid."_flag !");
  111. }
  112. // DROP column where not PK,flag
  113. foreach ($metaCol as $k => $v) {
  114. if ($v->name === 'flag') continue;
  115. if ($v->primary_key !== true) {
  116. $adodb->Execute("ALTER TABLE ".$tableid."_flag DROP ".$v->name);
  117. }
  118. }
  119. // COLUMN flag
  120. if (!$metaCol["FLAG"]) {
  121. $adodb->Execute("ALTER TABLE ".$tableid."_flag ADD flag INTEGER");
  122. }
  123. */
  124. $countPK = 0;
  125. $metaPK = $adodb->MetaPrimaryKeys($tb);
  126. if (is_array($metaPK)) $countPK = count($metaPK);
  127. if ($countPK > 1) {
  128. $adodb->Execute("DROP TABLE qb_data_".$tb);
  129. $tableid = $tb;
  130. $xtableid = "qb_data_".$tableid;
  131. $xtb = $xtableid;
  132. ## <table>_CRC ##
  133. #$rs = $adodb->Execute("SELECT * FROM qb_config WHERE tableid = ? ", array($tableid));
  134. #if (!$rs->EOF) {
  135. #$sqlCreate = $rs->fields['sqlcreate'];
  136. $sqlCreate = $_POST['sqlcreate'];
  137. $rs = $adodb->SelectLimit("SELECT * FROM ".$xtableid, 1);
  138. if (!$rs) {
  139. $rs = $adodb->Execute("CREATE TABLE ".$xtableid." ( ".$sqlCreate." ) ");
  140. if (!$rs) return $logger->error($adodb->ErrorMsg());
  141. }
  142. #} else {
  143. # return $logger->error("tableid '".$tableid."' not found on qb_config! ".
  144. # " ".$adodb->ErrorMsg());
  145. #}
  146. $adodb->Execute("ALTER TABLE ".$xtb." DROP PRIMARY KEY");
  147. $adodb->Execute("ALTER TABLE ".$xtb." ADD UNIQUE KEY (".implode(",", $metaPK).")");
  148. $adodb->Execute("ALTER TABLE ".$xtb." ADD qb_id INTEGER");
  149. #$adodb->Execute("ALTER TABLE ".$xtb." ADD flag INTEGER");
  150. $adodb->Execute("ALTER TABLE ".$xtb." ADD PRIMARY KEY (qb_id) ");
  151. $adodb->Execute("ALTER TABLE ".$xtb." CHANGE qb_id qb_id INTEGER auto_increment");
  152. $metaCol = $adodb->MetaColumns($tb);
  153. $cols = $cols2 = '';
  154. foreach ($metaCol as $k => $v) {
  155. if ($cols) $cols .= ",";
  156. $cols .= $v->name;
  157. #if ($cols2) $cols2 .= ",";
  158. #$cols2 .= $tb.".".$v->name;
  159. }
  160. #if ($cols) $cols .= ",";
  161. #$cols .= "flag";
  162. #if ($cols2) $cols2 .= ",";
  163. #$cols2 .= "IF(".$tb."_crc.crc".",NULL,1)";
  164. $adodb->Execute("INSERT INTO ".$xtb." (".$cols.") ".
  165. " SELECT ".$cols." FROM ".$tb);
  166. #" SELECT ".$cols2." FROM ".$tb);
  167. #" LEFT JOIN ".$tb."_crc USING ( ".implode(",", $metaPK)." )");
  168. $tb2 = $tb;
  169. $tb = $xtb;
  170. $dummysql = $param = $param2 = $param3 = '';
  171. foreach ($metaPK as $k => $v) {
  172. if ($dummysql) $dummysql .= " AND ";
  173. $dummysql .= $v." = ?";
  174. if ($param) $param .= ', ';
  175. $param .= '$rs->fields["'.$v.'"]';
  176. if ($param2) $param2 .= ', ';
  177. $param2 .= '$oldvals["'.$v.'"]';
  178. }
  179. } else {
  180. $tb2 = $tb;
  181. }
  182. $metaPK2 = $adodb->MetaPrimaryKeys($tb);
  183. $id = $metaPK2[0];
  184. $submit = true;
  185. $options = 1;
  186. $baseFilename = 'phpME_data_'.htmlspecialchars(abs(crc32($tb)));
  187. $TIAbuffer = "";
  188. if ($countPK > 1) {
  189. // create TRIGGER FILE
  190. $fileTIA = $baseFilename.".TIA.inc.php";
  191. $optsTIA = "\$opts['triggers']['insert']['after'] = '".$fileTIA."';";
  192. echo 'Trying to write TIA content file to: <b>'.'./'.$fileTIA.'</b><br>'."\n";
  193. $TIAhandle = @fopen('./'.$fileTIA, 'w+');
  194. if ($TIAhandle) {
  195. $TIAbuffer = "<"."? require_once 'auth.php';
  196. global \$adodb;
  197. \$rs2 = \$adodb->SelectLimit(\"SELECT * FROM ".$tb2."\", 1);
  198. \$rs2 = \$adodb->Execute(\$adodb->GetInsertSQL(\$rs2, \$newvals));
  199. if (!\$rs2) echo \$adodb->ErrorMsg(); ?".">";
  200. fwrite($TIAhandle, $TIAbuffer);
  201. flush($TIAhandle);
  202. fclose($TIAhandle);
  203. echo 'phpMyEdit TIA content file written successfully<br>';
  204. } else {
  205. echo 'phpMyEdit TIA content file was NOT written due to '.
  206. ' inssufficient privileges.<br>';
  207. }
  208. $fileTUA = $baseFilename.".TUA.inc.php";
  209. $optsTUA = "\$opts['triggers']['update']['after'] = '".$fileTUA."';";
  210. echo 'Trying to write TUA content file to: <b>'.'./'.$fileTUA.'</b><br>'."\n";
  211. $TUAhandle = @fopen('./'.$fileTUA, 'w+');
  212. if ($TUAhandle) {
  213. $TUAbuffer = "<"."? require_once 'auth.php';
  214. global \$adodb;
  215. \$rs = \$adodb->Execute(\"SELECT * FROM \".\$this->tb.\" \".
  216. \" WHERE \".\$this->key.\" = ?\", \$this->rec);
  217. if (!\$rs->EOF) {
  218. \$rs2 = \$adodb->Execute(\"SELECT * FROM ".$tb2." \".
  219. \" WHERE ".$dummysql." \", array($param));
  220. \$updateSQL = \$adodb->GetUpdateSQL(\$rs2, \$rs->fields);
  221. if (\$updateSQL) \$rs2 = \$adodb->Execute(\$updateSQL);
  222. if (!\$rs2) echo \$adodb->ErrorMsg();
  223. } ?".">";
  224. fwrite($TUAhandle, $TUAbuffer);
  225. flush($TUAhandle);
  226. fclose($TUAhandle);
  227. echo 'phpMyEdit TUA content file written successfully<br>';
  228. } else {
  229. echo 'phpMyEdit TUA content file was NOT written due to '.
  230. ' inssufficient privileges.<br>';
  231. }
  232. $fileTDA = $baseFilename.".TDA.inc.php";
  233. $optsTDA = "\$opts['triggers']['delete']['after'] = '".$fileTDA."';";
  234. echo 'Trying to write TDA content file to: <b>'.'./'.$fileTDA.'</b><br>'."\n";
  235. $TDAhandle = @fopen('./'.$fileTDA, 'w+');
  236. if ($TDAhandle) {
  237. $TDAbuffer = "<"."? require_once 'auth.php';
  238. global \$adodb;
  239. \$rs2 = \$adodb->Execute(\"DELETE FROM ".$tb2." \".
  240. \" WHERE ".$dummysql." \", array($param2));
  241. if (!\$rs2) echo \$adodb->ErrorMsg(); ?".">";
  242. #\$rs2 = \$adodb->Execute(\"DELETE FROM ".$tb2."_flag \".
  243. #\" WHERE ".$dummysql." \", array($param2));
  244. #if (!\$rs2) echo \$adodb->ErrorMsg();
  245. fwrite($TDAhandle, $TDAbuffer);
  246. flush($TDAhandle);
  247. fclose($TDAhandle);
  248. echo 'phpMyEdit TDA content file written successfully<br>';
  249. } else {
  250. echo 'phpMyEdit TDA content file was NOT written due to '.
  251. ' inssufficient privileges.<br>';
  252. }
  253. // end TRIGGER FILE
  254. }
  255. // TRIGGER INSERT AFTER
  256. /*
  257. $fileTIA = $baseFilename.".TIA.inc.php";
  258. $optsTIA = "\$opts['triggers']['insert']['after'] = '".$fileTIA."';";
  259. echo 'Trying to write TIA content file to: <b>'.'./'.$fileTIA.'</b><br>'."\n";
  260. $TIAhandle = @fopen('./'.$fileTIA, 'w+');
  261. if ($TIAhandle) {
  262. $TIAbuffer .= "<"."? require_once 'auth.php';
  263. global \$adodb;
  264. \$record = \$newvals;
  265. \$record['flag'] = 1;
  266. \$rs2 = \$adodb->SelectLimit(\"SELECT * FROM ".$tb2."_flag\", 1);
  267. \$insertSQL = \$adodb->GetInsertSQL(\$rs2, \$record);
  268. \$insertSQL = str_replace('INSERT', 'REPLACE', \$insertSQL);
  269. \$rs2 = \$adodb->Execute(\$insertSQL);
  270. if (!\$rs2) echo \$adodb->ErrorMsg(); ?".">";
  271. fwrite($TIAhandle, $TIAbuffer);
  272. flush($TIAhandle);
  273. fclose($TIAhandle);
  274. echo 'phpMyEdit TIA content file written successfully<br>';
  275. } else {
  276. echo 'phpMyEdit TIA content file was NOT written due to '.
  277. ' inssufficient privileges.<br>';
  278. }
  279. */
  280. $optsInput = "";
  281. $rs = $adodb->Execute("SELECT * FROM qb_config WHERE tableid = ? ", array($tableid));
  282. if (!$rs->EOF) {
  283. $rs = $adodb->Execute("SELECT * FROM qb_config_odbc ".
  284. " WHERE id = ? ", array($rs->fields['id']));
  285. if (!$rs->EOF) {
  286. $odbcCol = unserialize($rs->fields['serialize']);
  287. foreach ($odbcCol as $k => $v) {
  288. $optsInput .= "\t\t\$opts['fdd']['".$v."']['input'] = 'R';\n";
  289. }
  290. }
  291. } else {
  292. # return $logger->error("tableid '".$tableid."' not found on qb_config! ".
  293. # " ".$adodb->ErrorMsg());
  294. }
  295. $optsInput = "
  296. function flag_enabled(\$rec) {
  297. global \$adodb, \$opts;
  298. \$rs = \$adodb->Execute('SELECT * FROM '.\$opts['tb'].' '.
  299. ' WHERE '.\$opts['key'].' = ? ', array(\$rec));
  300. if (!\$rs->EOF) {
  301. global \$adodb, \$opts;
  302. \$rs = \$adodb->Execute('SELECT * FROM ".$tableid."_crc'.
  303. ' WHERE ".implode(" = ? AND ", $metaPK)." = ?',
  304. array(\$rs->fields['".implode("'], \$rs->fields['", $metaPK)."']));
  305. if (!\$rs->EOF) return 0;
  306. }
  307. return 1;
  308. }
  309. if (flag_enabled(\$_REQUEST['rec']) === 0) {
  310. ".$optsInput."
  311. }
  312. ";
  313. $pageTitle = $tb2;
  314. $pageHeader = true;
  315. $HTMLissues = true;
  316. $CSSstylesheet = true;
  317. /* QBUILDER TRAP */
  318. $phpExtension = '.php';
  319. if (isset($baseFilename) && $baseFilename != '') {
  320. $phpFile = $baseFilename.$phpExtension;
  321. //$contentFile = $baseFilename.'Content.inc';
  322. $contentFile = $baseFilename.'.php';
  323. } elseif (isset($tb)) {
  324. $phpFile = $tb.$phpExtension;
  325. //$contentFile = $tb.'Content.inc';
  326. $contentFile = $tb.'.php';
  327. } else {
  328. $phpFile = 'index'.$phpExtension;
  329. //$contentFile = 'Content.inc';
  330. $contentFile = 'phpMyEdit-content.php';
  331. }
  332. $buffer = '';
  333. function echo_html($x)
  334. {
  335. echo htmlspecialchars($x),"\n";
  336. }
  337. function echo_buffer($x)
  338. {
  339. global $buffer;
  340. $buffer .= $x."\n";
  341. }
  342. $self = basename($HTTP_SERVER_VARS['PHP_SELF']);
  343. $dbl = @mysql_pconnect($hn, $un, $pw);
  344. if ((!$dbl) or empty($submit)) {
  345. echo '<h1>Please log in to your MySQL database</h1>';
  346. if (!empty($submit)) {
  347. echo '<h2>Sorry - login failed - please try again</h2>'."\n";
  348. }
  349. if (! isset($hn)) {
  350. $hn = 'localhost';
  351. }
  352. echo '
  353. <form action="'.htmlspecialchars($self).'" method="POST">
  354. <table border="1" cellpadding="1" cellspacing="0" summary="Login form">
  355. <tr>
  356. <td>Hostname:</td>
  357. <td><input type="text" name="hn" value="'.htmlspecialchars($hn).'"></td>
  358. </tr><tr>
  359. <td>Username:</td>
  360. <td><input type="text" name="un" value="'.htmlspecialchars($un).'"></td>
  361. </tr><tr>
  362. <td>Password:</td>
  363. <td><input type="password" name="pw" value="'.htmlspecialchars($pw).'"></td>
  364. </tr>
  365. </table><br>
  366. <input type="submit" name="submit" value="Submit">
  367. </form>'."\n";
  368. } else if (! isset($db)) {
  369. $dbs = @mysql_list_dbs($dbl);
  370. $num_dbs = @mysql_num_rows($dbs);
  371. echo '<h1>Please select a database</h1>
  372. <form action="'.htmlspecialchars($self).'" method="POST">
  373. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  374. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  375. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  376. <table border="1" cellpadding="1" cellspacing="1" summary="Database selection">'."\n";
  377. for ($i = 0; $i < $num_dbs; $i++) {
  378. $db = @mysql_db_name($dbs, $i);
  379. $checked = ! strcasecmp($un, $db) ? ' checked' : '';
  380. $db = htmlspecialchars($db);
  381. echo '<tr><td><input'.$checked.' type="radio" name="db" value="'.$db.'"></td><td>'.$db.'</td></tr>'."\n";
  382. }
  383. echo '</table><br>
  384. <input type="submit" name="submit" value="Submit">
  385. <input type="submit" name="cancel" value="Cancel">
  386. </form>'."\n";
  387. } else if (!isset($tb)) {
  388. echo '<h1>Please select a table from database: '.htmlspecialchars($db).'</h1>
  389. <form action="'.htmlspecialchars($self).'" method="POST">
  390. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  391. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  392. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  393. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  394. <table border="1" cellpadding="1" cellspacing="1" summary="Table selection">'."\n";
  395. $tbs = @mysql_list_tables($db, $dbl);
  396. $num_tbs = @mysql_num_rows($tbs);
  397. for ($j = 0; $j < $num_tbs; $j++) {
  398. $tb = @mysql_tablename($tbs, $j);
  399. $tb = htmlspecialchars($tb);
  400. $checked = $j == 0 ? ' checked' : '';
  401. echo '<tr><td><input'.$checked.' type="radio" name="tb" value="'.$tb.'"></td><td>'.$tb.'</td></tr>'."\n";
  402. }
  403. echo '</table><br>
  404. <input type="submit" name="submit" value="Submit">
  405. <input type="submit" name="cancel" value="Cancel">
  406. </form>'."\n";
  407. } else if (!isset($id)) {
  408. echo ' <h1>Please select an identifier from table: '.htmlspecialchars($tb).'</h1>
  409. <p>
  410. This field will be used in change, view, copy and delete operations.<br>
  411. The field should be numeric and must uniquely identify a record.
  412. </p>
  413. <p>
  414. Please note, that there were problems reported by phpMyEdit users
  415. regarding using MySQL reserved word as unique key name (the example for
  416. this is "key" name). Thus we recommend you to use another name
  417. of unique key. Usage of "id" or "ID" should be safe and good idea.
  418. </p>
  419. <form action="'.htmlspecialchars($self).'" method="POST">
  420. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  421. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  422. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  423. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  424. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  425. <table border="1" cellpadding="1" cellspacing="1" summary="Key selection">'."\n";
  426. // <tr><td><input type="radio" name="id" value="">
  427. // <td><i>None</i></td><td><i>No id field required</i></td></tr>
  428. @mysql_select_db($db);
  429. $tb_desc = @mysql_query("DESCRIBE $tb");
  430. $fds = @mysql_list_fields($db,$tb,$dbl);
  431. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != false; $j++) {
  432. $ff = @mysql_field_flags($fds, $j);
  433. strlen($ff) <= 0 && $ff = '---';
  434. $checked = stristr($ff, 'primary_key') ? ' checked' : '';
  435. echo '<tr><td><input',$checked,' type="radio" name="id" value="',htmlspecialchars($fd),'"></td>';
  436. echo '<td>',htmlspecialchars($fd),'</td>';
  437. echo '<td>',htmlspecialchars($ff),'</td>';
  438. $r = @mysql_fetch_array($tb_desc, $j);
  439. }
  440. echo '</table><br>
  441. <input type="submit" name="submit" value="Submit">
  442. <input type="submit" name="cancel" value="Cancel">
  443. </form>'."\n";
  444. } else if (!isset($options)) {
  445. echo '<h1>Please select additional options</h1>
  446. <form action="'.htmlspecialchars($self).'" method="POST">
  447. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  448. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  449. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  450. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  451. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  452. <input type="hidden" name="id" value="'.htmlspecialchars($id).'">
  453. <table border="1" cellpadding="1" cellspacing="1" summary="Additional options">
  454. <tr><td>Base filename</td><td><input type="text" name=baseFilename value ="'.htmlspecialchars($tb).'"></td></tr>
  455. <tr><td>Page title</td><td><input type="text" name=pageTitle value ="'.htmlspecialchars($tb).'"></td></tr>
  456. <tr><td>Page header</td><td><input type="checkbox" name=pageHeader></td></tr>
  457. <tr><td>HTML header &amp; footer</td><td><input type="checkbox" name=HTMLissues></td></tr>
  458. <tr><td>CSS basic stylesheet</td><td><input checked type="checkbox" name=CSSstylesheet></td></tr>
  459. </table><br>
  460. <input type="submit" name="submit" value="Submit">
  461. <input type="submit" name="cancel" value="Cancel">
  462. <input type="hidden" name="options" value="1">
  463. </form>'."\n";
  464. } else {
  465. echo '<h1>Here is your phpMyEdit calling program</h1>'."\n";
  466. echo '<h2>You may now copy and paste it into your PHP editor</h2>'."\n";
  467. if ($pageHeader) {
  468. #echo_buffer('<h3>'.$pageTitle.'</h3>');
  469. }
  470. echo_buffer("<?php
  471. /*
  472. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  473. * of options that can be used with phpMyEdit. To get information about all
  474. * features offered by phpMyEdit, check official documentation. It is available
  475. * online and also for download on phpMyEdit project management page:
  476. *
  477. * http://www.platon.sk/projects/main_page.php?project_id=5
  478. */
  479. // MySQL host name, user name, password, database, and table
  480. \$opts['tb'] = '$tb';
  481. \$opts['tb2'] = '$tb2';
  482. // Name of field which is the unique key
  483. \$opts['key'] = '$id';
  484. // Type of key field (int/real/string/date etc.)");
  485. if ($id == '') {
  486. echo_buffer("\$opts['key_type'] = '';");
  487. } else {
  488. $fds = @mysql_list_fields($db,$tb,$dbl);
  489. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != ''; $j++) {
  490. if ($fd == $id) {
  491. echo_buffer("\$opts['key_type'] = '".@mysql_field_type($fds, $j)."';");
  492. break;
  493. }
  494. }
  495. }
  496. echo_buffer("
  497. // Sorting field(s)
  498. \$opts['sort_field'] = array('$id');
  499. // Number of records to display on the screen
  500. // Value of -1 lists all records in a table
  501. \$opts['inc'] = 25;
  502. // Options you wish to give the users
  503. // A - add, C - change, P - copy, V - view, D - delete,
  504. // F - filter, I - initial sort suppressed
  505. \$opts['options'] = 'ACDF'; // DPV
  506. // Number of lines to display on multiple selection filters
  507. \$opts['multiple'] = '4';
  508. // Navigation style: B - buttons (default), T - text links, G - graphic links
  509. // Buttons position: U - up, D - down (default)
  510. \$opts['navigation'] = 'UG'; //'DB';
  511. // Display special page elements
  512. \$opts['display'] = array(
  513. 'form' => true,
  514. 'query' => true,
  515. 'sort' => true,
  516. 'time' => true,
  517. 'tabs' => true
  518. );
  519. \$opts['logtable'] = 'qb_changelog';
  520. /* Get the user's default language and use it if possible or you can
  521. specify particular one you want to use. Refer to official documentation
  522. for list of available languages. */
  523. \$opts['language'] = \$HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  524. /* Table-level filter capability. If set, it is included in the WHERE clause
  525. of any generated SELECT statement in SQL query. This gives you ability to
  526. work only with subset of data from table.
  527. \$opts['filters'] = \"column1 like '%11%' AND column2<17\";
  528. \$opts['filters'] = \"section_id = 9\";
  529. \$opts['filters'] = \"PMEtable0.sessions_count > 200\";
  530. */
  531. /* Field definitions
  532. Fields will be displayed left to right on the screen in the order in which they
  533. appear in generated list. Here are some most used field options documented.
  534. ['name'] is the title used for column headings, etc.;
  535. ['maxlen'] maximum length to display add/edit/search input boxes
  536. ['trimlen'] maximum length of string content to display in row listing
  537. ['width'] is an optional display width specification for the column
  538. e.g. ['width'] = '100px';
  539. ['mask'] a string that is used by sprintf() to format field output
  540. ['sort'] true or false; means the users may sort the display on this column
  541. ['strip_tags'] true or false; whether to strip tags from content
  542. ['nowrap'] true or false; whether this field should get a NOWRAP
  543. ['required'] true or false; if generate javascript to prevent null entries
  544. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  545. ['options'] optional parameter to control whether a field is displayed
  546. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  547. Another flags are:
  548. R - indicates that a field is read only
  549. W - indicates that a field is a password field
  550. H - indicates that a field is to be hidden and marked as hidden
  551. ['URL'] is used to make a field 'clickable' in the display
  552. e.g.: 'mailto:\$value', 'http://\$value' or '\$page?stuff';
  553. ['URLtarget'] HTML target link specification (for example: _blank)
  554. ['textarea']['rows'] and/or ['textarea']['cols']
  555. specifies a textarea is to be used to give multi-line input
  556. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  557. ['values'] restricts user input to the specified constants,
  558. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  559. ['values']['table'] and ['values']['column'] restricts user input
  560. to the values found in the specified column of another table
  561. ['values']['description'] = 'desc_column'
  562. The optional ['values']['description'] field allows the value(s) displayed
  563. to the user to be different to those in the ['values']['column'] field.
  564. This is useful for giving more meaning to column values. Multiple
  565. descriptions fields are also possible. Check documentation for this.
  566. */
  567. ");
  568. @mysql_select_db($db);
  569. $tb_desc = @mysql_query("DESCRIBE $tb");
  570. $fds = @mysql_list_fields($db, $tb, $dbl);
  571. $num_fds = @mysql_num_fields($fds);
  572. $ts_cnt = 0;
  573. for ($k = 0; $k < $num_fds; $k++) {
  574. $fd = mysql_field_name($fds,$k);
  575. $fm = mysql_fetch_field($fds,$k);
  576. $fn = strtr($fd, '_-.', ' ');
  577. $fn = preg_replace('/(^| +)id( +|$)/', '\\1ID\\2', $fn); // uppercase IDs
  578. $fn = ucfirst($fn);
  579. $row = @mysql_fetch_array($tb_desc);
  580. $label = str_replace('\'','\\\'',$fn);
  581. if ($arrLabel[$fd]) $label = $arrLabel[$fd];
  582. echo_buffer('$opts[\'fdd\'][\''.$fd.'\'] = array('); // )
  583. echo_buffer(" 'name' => '".$label."',");
  584. $auto_increment = strstr($row[5], 'auto_increment') ? 1 : 0;
  585. if (substr($row[1],0,3) == 'set') {
  586. echo_buffer(" 'select' => 'M',");
  587. } else {
  588. echo_buffer(" 'select' => 'T',");
  589. }
  590. if ($auto_increment) {
  591. echo_buffer(" 'options' => 'AVCPDR', // auto increment");
  592. }
  593. // timestamps are read-only
  594. else if (@mysql_field_type($fds, $k) == 'timestamp') {
  595. if ($ts_cnt > 0) {
  596. echo_buffer(" 'options' => 'AVCPD',");
  597. } else { // first timestamp
  598. echo_buffer(" 'options' => 'AVCPDR', // updated automatically (MySQL feature)");
  599. }
  600. $ts_cnt++;
  601. }
  602. echo_buffer(" 'maxlen' => ".@mysql_field_len($fds,$k).',');
  603. // blobs -> textarea
  604. if (@mysql_field_type($fds,$k) == 'blob') {
  605. echo_buffer(" 'textarea' => array(");
  606. echo_buffer(" 'rows' => 5,");
  607. echo_buffer(" 'cols' => 50),");
  608. }
  609. // SETs and ENUMs get special treatment
  610. if ((substr($row[1],0,3) == 'set' || substr($row[1],0,4) == 'enum')
  611. && ! (($pos = strpos($row[1], '(')) === false)) {
  612. $indent = str_repeat(' ', 18);
  613. $outstr = substr($row[1], $pos + 2, -2);
  614. $outstr = explode("','", $outstr);
  615. $outstr = str_replace("''", "'", $outstr);
  616. $outstr = str_replace('"', '\\"', $outstr);
  617. $outstr = implode("\",\n$indent\"", $outstr);
  618. echo_buffer(" 'values' => array(\n$indent\"".$outstr.'"),');
  619. }
  620. // automatic support for Default values
  621. if ($row[4] != '' && $row[4] != 'NULL') {
  622. echo_buffer(" 'default' => '".$row[4]."',");
  623. } else if ($auto_increment) {
  624. echo_buffer(" 'default' => '0',");
  625. }
  626. if (stristr(@mysql_field_flags($fds, $k), 'not_null') && ! $auto_increment) {
  627. echo_buffer(" 'required' => true,");
  628. }
  629. echo_buffer(" 'sort' => true");
  630. //echo_buffer(" 'nowrap' => false,");
  631. echo_buffer(');');
  632. }
  633. echo_buffer("
  634. \$moduleId = 'Import.Table Config';
  635. \$opts['options'] = 'F';
  636. if (\$isSupervisor) {
  637. \$userAction['addData'] = 1;
  638. \$userAction['editData'] = 1;
  639. \$userAction['deleteData'] = 1;
  640. } else {
  641. \$userAction = getUserActions(\$_SESSION['userid'], \$moduleId);
  642. }
  643. if (\$userAction['addData']) \$opts['options'] .= 'A';
  644. if (\$userAction['editData']) \$opts['options'] .= 'C';
  645. if (\$userAction['deleteData']) \$opts['options'] .= 'D';
  646. ".$optsTIA."
  647. ".$optsTUA."
  648. ".$optsTDA."
  649. ".$optsInput."
  650. if (isset(\$opts['fdd']['qb_id'])) {
  651. \$opts['fdd']['qb_id']['options'] = '';
  652. }
  653. if (\$userAction['deleteData']) {
  654. \$opts['options'] .= 'D';
  655. #\$opts['fdd']['flag']['options'] = 'AL';
  656. #\$opts['fdd']['flag']['input'] = 'H';
  657. #\$opts['fdd']['flag']['default'] = '1';
  658. #\$opts['fdd']['flag']['sql'] = \$opts['key'];
  659. #\$opts['fdd']['flag']['URL'] = '\$page?\$url&operation=Delete';
  660. #\$opts['fdd']['flag']['eval'] = '
  661. # if (flag_enabled(\$value) === 1) \$value = __(\"Delete\");
  662. # else \$value = \"\";
  663. #';
  664. #\$opts['fdd'] = array_merge(array('flag'=>\$opts['fdd']['flag']), \$opts['fdd']);
  665. }
  666. // Now important call to phpMyEdit
  667. require_once 'phpMyEdit.class.php';
  668. new phpMyEdit(\$opts);
  669. ?>
  670. ");
  671. $css_directive = <<<END
  672. <style type="text/css">
  673. table { border: #004d9c 1px solid; border-collapse: collapse; border-spacing: 0px; width: 100%; }
  674. th { border: #004d9c 1px solid; padding: 4px; background: #add8e6; }
  675. td { border: #004d9c 1px solid; padding: 3px; }
  676. hr { border: 0px solid; padding: 0px; margin: 0px; border-top-width: 1px; height: 1px; }
  677. </style>
  678. END;
  679. $css_directive = <<<END
  680. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  681. END;
  682. if (! $CSSstylesheet) {
  683. $css_directive = '';
  684. }
  685. if ($HTMLissues) {
  686. $htmlbuffer = <<<END
  687. <?php require_once 'auth.php'; ?>
  688. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  689. "http://www.w3.org/TR/html4/loose.dtd">
  690. <html>
  691. <head>
  692. <title>$pageTitle</title>
  693. $css_directive
  694. </head>
  695. <body>
  696. END;
  697. $htmlbuffer .= "
  698. <script language=javascript>
  699. function windowOpen(u,W,H) {
  700. TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
  701. LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
  702. settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
  703. ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
  704. win = window.open(u,'_blank',settings);
  705. return win;
  706. }
  707. function exporttable(tb) {
  708. //windowOpen('exporttable.php?tableid='+tb, 600, 200);
  709. location.href = ('exporttable.php?tableid='+tb);
  710. }
  711. </script>
  712. <h3>$pageTitle
  713. <input type=button value='".__('Export CSV')."' onClick='exporttable(\"$tb\")'>
  714. </h3>
  715. ";
  716. $buffer = $htmlbuffer."\n" . $buffer;
  717. } else if ($CSSstylesheet) {
  718. $buffer = $css_directive . $buffer;
  719. }
  720. if ($HTMLissues) {
  721. $buffer .= "</body>\n";
  722. $buffer .= "</html>\n";
  723. }
  724. // write the content include file
  725. echo 'Trying to write content file to: <b>'.'./'.$contentFile.'</b><br>'."\n";
  726. $filehandle = @fopen('./'.$contentFile, 'w+');
  727. if ($filehandle) {
  728. fwrite($filehandle, $buffer);
  729. flush($filehandle);
  730. fclose($filehandle);
  731. echo 'phpMyEdit content file written successfully<br>';
  732. /* QBUILDER TRAP */
  733. echo "
  734. <script language=javascript>
  735. location.href = '$contentFile';
  736. </script>
  737. ";
  738. /* QBUILDER TRAP */
  739. } else {
  740. echo 'phpMyEdit content file was NOT written due to inssufficient privileges.<br>';
  741. echo 'Please copy and paste content listed below to <i>'.'./'.$contentFile.'</i> file.';
  742. }
  743. echo '<br><hr>';
  744. echo '<pre>';
  745. echo_html($buffer);
  746. echo '</pre><hr>'."\n";
  747. }
  748. ?>
  749. </body>
  750. </html>