Proper Format of iframe in PHP?
You are not properly escaping the double quotes. You only escape it before the http:// bit and all the way at the end, but not in between (which is also necessary). If you encapsulate the HTML between single quotes, you don’t have to escape all the double ones. Try it like this: Although, you’re not … Read more