I want to echo a double quote or single quote but I can't seem to find a way to escape them.
ex: echo "<form method=post action=test.php onSubmit="alert('No Way Jose!')">;";
Please help
echo "<form method=post action=test.php onSubmit=\"alert('No Way Jose!')\">;";
use \ to escape "
Thanks for you help