$bookA = \"123\"; $crack = \"A\";
I want to do something similar to this:
echo $book$crack;
Such that the output is 123
This will work:
$bookA = "123"; $crack = "A"; $var = "book$crack"; echo $$var;