Tach!
nutze doch bitte direkt die Variable
<form action="<?php echo $_GET['url']?>" target="_blank">
htmlspecialchars() fehlt noch, sonst ist das kaputt.
~~~php
<form action="<?php echo htmlspecialchars($_GET['url']) ?>" target="_blank">
dedlfix.