I simply need a GET Variable that doesn't have any " marks. ' marks are okay, but " aren't. What do I need to do to fix that? And no, changing the " marks to ' do not work. I must do this because the GET is a URL link, so the URL link must be within two " quotes. If a " mark is within those lines, it will cause the link to stop short.
' . $_GET["test"] . '
My Code
<?php
$user = str_replace($_GET["user"], "\"", "'");
$user = "" . $user . "";
?>
<iframe src="https://domain.tld/?user=' . $user . '&password=' . $_GET['password'] . '&version=99" height="30" width="500"></iframe>