News:

Please note these forums are mostly a testing ground for my SMF work and I don't really use them otherwise.

Main Menu

Paste-1181783557:v:use_geshi-1:v:type-php

Started by SleePy, Jun 14, 2007, 01:12 AM

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

SleePy

      // Are we dumping the structures?
      if (isset($_GET['struct']))
      {
         echo
            $crlf,
            '#', $crlf,
            '# Table structure for table `', $tableName[0], '`', $crlf,
            '#', $crlf,
            $crlf,
            'DROP TABLE IF EXISTS `', $tableName[0], '`;', $crlf,
            $crlf,
            getTableSQLData($tableName[0]), ';', $crlf;
      }
No siggy! :D

Guest

      // Are we dumping the structures?
      if (isset($_GET['struct']))
      {
         echo '
            #
            # Table structure for table `', $tableName[0], '`
            #
            
            DROP TABLE IF EXISTS `', $tableName[0], '`;', $crlf,
            $crlf,
            getTableSQLData($tableName[0]), ';', $crlf;
      }