* Introduced StringUtils.php, populated it with some generic string functions, both...
[lhc/web/wiklou.git] / maintenance / namespace2sql.php
1 <?php
2 #
3 # Print SQL to insert namespace names into database.
4 # This source code is in the public domain.
5
6 require_once( "commandLine.inc" );
7
8 for ($i = -2; $i < 16; ++$i) {
9 $nsname = mysql_escape_string( $wgLang->getNsText( $i ) );
10 $dbname = mysql_escape_string( $wgDBname );
11 print "INSERT INTO ns_name(ns_db, ns_num, ns_name) VALUES('$dbname', $i, '$nsname');\n";
12 }
13
14 ?>