| 467 | | * PHP4 compatibility layer for calling the PHP5 constructor. |
| 468 | | * |
| 469 | | * @uses wpdb::__construct() Passes parameters and returns result |
| 470 | | * @since 0.71 |
| 471 | | * |
| 472 | | * @param string $dbuser MySQL database user |
| 473 | | * @param string $dbpassword MySQL database password |
| 474 | | * @param string $dbname MySQL database name |
| 475 | | * @param string $dbhost MySQL database host |
| 476 | | */ |
| 477 | | function wpdb( $dbuser, $dbpassword, $dbname, $dbhost ) { |
| 478 | | return $this->__construct( $dbuser, $dbpassword, $dbname, $dbhost ); |
| 479 | | } |
| 480 | | |
| 481 | | /** |
| 482 | | * Connects to the database server and selects a database |
| 483 | | * |