server.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /**
  3. * @version V4.50 6 July 2004 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. * Released under both BSD license and Lesser GPL library license.
  5. Whenever there is any discrepancy between the two licenses,
  6. the BSD license will take precedence.
  7. */
  8. /* Documentation on usage is at http://php.weblogs.com/adodb_csv
  9. *
  10. * Legal query string parameters:
  11. *
  12. * sql = holds sql string
  13. * nrows = number of rows to return
  14. * offset = skip offset rows of data
  15. * fetch = $ADODB_FETCH_MODE
  16. *
  17. * example:
  18. *
  19. * http://localhost/php/server.php?select+*+from+table&nrows=10&offset=2
  20. */
  21. /*
  22. * Define the IP address you want to accept requests from
  23. * as a security measure. If blank we accept anyone promisciously!
  24. */
  25. $ACCEPTIP = '';
  26. /*
  27. * Connection parameters
  28. */
  29. $driver = 'mysql';
  30. $host = 'localhost'; // DSN for odbc
  31. $uid = 'root';
  32. $pwd = '';
  33. $database = 'test';
  34. /*============================ DO NOT MODIFY BELOW HERE =================================*/
  35. // $sep must match csv2rs() in adodb.inc.php
  36. $sep = ' :::: ';
  37. include('./adodb.inc.php');
  38. include_once(ADODB_DIR.'/adodb-csvlib.inc.php');
  39. function err($s)
  40. {
  41. die('**** '.$s.' ');
  42. }
  43. // undo stupid magic quotes
  44. function undomq(&$m)
  45. {
  46. if (get_magic_quotes_gpc()) {
  47. // undo the damage
  48. $m = str_replace('\\\\','\\',$m);
  49. $m = str_replace('\"','"',$m);
  50. $m = str_replace('\\\'','\'',$m);
  51. }
  52. return $m;
  53. }
  54. ///////////////////////////////////////// DEFINITIONS
  55. $remote = $HTTP_SERVER_VARS["REMOTE_ADDR"];
  56. if (empty($HTTP_GET_VARS['sql'])) err('No SQL');
  57. if (!empty($ACCEPTIP))
  58. if ($remote != '127.0.0.1' && $remote != $ACCEPTIP)
  59. err("Unauthorised client: '$remote'");
  60. $conn = &ADONewConnection($driver);
  61. if (!$conn->Connect($host,$uid,$pwd,$database)) err($conn->ErrorNo(). $sep . $conn->ErrorMsg());
  62. $sql = undomq($HTTP_GET_VARS['sql']);
  63. if (isset($HTTP_GET_VARS['fetch']))
  64. $ADODB_FETCH_MODE = $HTTP_GET_VARS['fetch'];
  65. if (isset($HTTP_GET_VARS['nrows'])) {
  66. $nrows = $HTTP_GET_VARS['nrows'];
  67. $offset = isset($HTTP_GET_VARS['offset']) ? $HTTP_GET_VARS['offset'] : -1;
  68. $rs = $conn->SelectLimit($sql,$nrows,$offset);
  69. } else
  70. $rs = $conn->Execute($sql);
  71. if ($rs){
  72. //$rs->timeToLive = 1;
  73. echo _rs2serialize($rs,$conn,$sql);
  74. $rs->Close();
  75. } else
  76. err($conn->ErrorNo(). $sep .$conn->ErrorMsg());
  77. ?>