Hey here is my problem : i made a flash and i can`t change it no mather what. That flash had a form that was sending data to my subdomain.. i had to remove the subdomain and i got a new website, the problem is this : how do i redirect the form data from the old site to the new one? In the flash i had the form send the data to : subdomain.site.ro/subscribe.php i still have that file there and i could write a script in it but the field names are something like : field[name] and i can't process them so i must send them to the original script witch is now on another site : othersite.ro/subscribe.php.
Yani basicaly i (yeni web sitesi) yeni komut dosyasına post / almak değişkenleri geçer bir senaryo yazmak gerekir ya da yeni web sitesi için post / almak değişkenleri yönlendirecek bir. Htaccess dosyası yazmak
Can someone help me? i`ve been searching for a long time and i could not find anything helpfull I would be gratefull if you would at least try to help. Thanks, Dan
Ok Now i can proccess the variables with the script below(with a html form). But the flash is not sending any variables to the script. i tried a lot of things and i am still trying.. any ideeas ? if yes please let me know. Thanks, Dan
<?php
if(isset($_POST['key']['yourmom']))
echo 'Your mom is '.$_POST['key']['yourmom'].' and your face '.$_POST['key']['yourface'];
?>
<form method="post">
<input type="hidden" name="key[yourmom]" value="lol">
<input type="hidden" name="key[yourface]" value="failed">
<input type="submit">
</form>