$bookA = \"123\"; $crack = \"A\";
I want to do something similar to this:
echo $book$crack;
Such that the output is 123
echo ${"book" . $crack};