• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

[ERLEDIGT] Wie gehört dieser PHP "Befehl" ?

Status
Für weitere Antworten geschlossen.

Banixx

Neues Mitglied
Hallo!
Ich habe einen PHP Befehl nämlich :

PHP:
    $paypalurl = "[URL]https://www.paypal.me/WizardGen[/URL]".urlencode($packageprice)."&business=".urlencode($paypal)."&page_style=primary&item_name=".urlencode($packagename)."&return=http://".$_SERVER['SERVER_NAME'].dirname($_SERVER['REQUEST_URI'])."/purchase.php?action=buy-success&rm=2&notify_url=http://".$_SERVER['SERVER_NAME'].dirname($_SERVER['REQUEST_URI'])."/lib/ipn.php"."&cancel_return=http://".$_SERVER['SERVER_NAME'].dirname($_SERVER['REQUEST_URI'])."/purchase.php?action=buy-error&custom=".urlencode($custom)."&mc_currency=USD";
    header('Location: '.$paypalurl);
}

Ich will dass da nur https://www.paypal.me/WizardGen geöffnet wird
Wie muss ich das ändern ?
 
Werbung:
PHP:
<?php
$paypalurl = “https://www.paypal.me/WizardGen“;
?>
HTML:
<a href=“<?php echo $paypalurl; ?>“>Link</a>
 
Werbung:
Status
Für weitere Antworten geschlossen.
Zurück
Oben