in reply to declaring variable

$pass = "5$pass5";
This is actually doing the equivalent of:
$pass = "5" . $pass5;
Try using:
$pass = sprintf("5%s5", $pass); or $pass = "5" . $pass . "5";

Replies are listed 'Best First'.
Re^2: declaring variable
by Anonymous Monk on Feb 14, 2005 at 17:25 UTC
    thanks all