Hi there, I am trying to make an auto login for my wordpress, but now i am stuck with something basic. $username = "test"; $passwd2 = "$P$BWf......wVEO2EP13.lL"; WP_Integration2::wp_login( $username, $passwd2); class WP_Integration2 { function wp_login( $userid, $pass) { print "Password is: ".$pass; } } Code (markup): But password is just gives .lL. How do is escape the $ signs in the stored password?? regards