1<?php
2
3$conf['var'] = array('hello' => 'Hello World');
4
5// PayPal Order Buttons
6
7$conf['var']['item9mm'] =
8'<html>
9<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
10<input type="hidden" name="cmd" value="_s-xclick">
11<input type="hidden" name="hosted_button_id" value="123456789">
12<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_SM.gif" border="0" name="submit" alt="Add to Cart">
13<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
14</form>
15</html>';
16
17?>
18