SleePyCode Forums

Special Site & Other Boards => PasteBin => Topic started by: SleePy on Jun 14, 2007, 01:12 AM

Title: Paste-1181783557:v:use_geshi-1:v:type-php
Post by: SleePy on Jun 14, 2007, 01:12 AM
      // 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;
      }
Title: Paste-1181783770:v:use_geshi-1:v:type-php
Post by: Guest on Jun 14, 2007, 01:16 AM
      // 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;
      }