in reply to declaring variable
This is actually doing the equivalent of:$pass = "5$pass5";
Try using:$pass = "5" . $pass5;
$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 |