Ich hab mal ne Frage, ich hoffe ihr koennt mir helfen.
Ich habe den html-mod installiert und nutze einen iframe um paypal in einem Topic anzuzeigen.
Der Code sieht so aus:
Im Topic:
Code: Alles auswählen
</iframe><br>
<iframe frameborder="0" ALIGN="CENTER" src="paypal/paypal.html" width="620" height="400" name="Paypal_Button"></iframe>
Code: Alles auswählen
<html>
<head>
<title>Paypal</title>
</head>
<body>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="paypal@XXXX.com">
<input type="hidden" name="item_name" value="Product">
<input type="hidden" name="item_number" value="TOPIC-TITLE">
<input type="hidden" name="amount" value="0.01">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="lc" value="GB">
<input type="hidden" name="currency_code" value="EUR">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_paynowCC_LG.gif"
name="submit" alt="Pay now via Paypal>
</form>
</body>
</html>
Geht das mit einem iframe?
Und wenn nicht im iframe, wie würde das gehen wenn ich den html-code direkt in das Thema schreibe? Wenn ja, wie?
Danke für eure hilfe!