On 20/05/06, Luis Mandel luismandel@gmail.com wrote:
How is possible to ask if a page (an article) already exists at mediawiki?
$title = Title::makeTitle( namespace, text ); if( $title->exists() ) { ... }
How do I know if the user visiting a page is already logged in or not?
global $wgUser; if( $wgUser->isLoggedIn() ) { ... }
Rob Church