I think you did a copy and paste of the code from the book electronic version, which can give you problems. Look really carefull at the kind of quotes this statement is using:
Code:
echo âIf this works we <i>really</i> did it!â;
Change it to this and it should work(Notice that I am using different quotes).
Code:
echo "If this works we <i>really</i> did it!";
With regard to your mysql problem, I had the same problem and this is what I did to solve it. Run winmysqladmin.exe which should be inside the bin directory and this will create a file that is needed to the mysql service deamon to start.
Let me know if that solved your problems.
Christian