Am developed a website with word press and my url like this http://www.myhost/wp/
now i want to add a webpage like http://www.myhost/wp/guest/
the guest folder contains an index.php file
this file is fetching some data from wordpress mysql database.
the index.php files are shown below..
<?php
$user_count = $wpdb->get_var( "SELECT user_login FROM $wpdb->adc_eng_users" );
echo "<p>User count is {$user_count}</p>";
?>
i cant get the data from database table... how can i include the connection configuration with wp_config.php file
any body please help me
Thanks