我正在尝试设置一个等于某些 html 代码的变量。在 html 代码内部,我希望将一些其他 php 变量的值包含在其中。这是我的代码的示例。我能够将 php 变量设置为等于 html 代码,但是我无法在 html 代码中包含 php 变量。请帮忙。预先感谢我尝试使用<?php echo $paypal ?>但没有成功。我还尝试仅放置变量名称,但这不会设置值,而仅在此处的代码中设置变量的名称。
paypalsend = '
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="{$paypal}">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="{$product}">
<input type="hidden" name="amount" value="{$price}">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="shipping" value="{$shipping}">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
';
慕标5832272