Hey, I'm trying to implement paypal cart into a page. Question I have is this: When you want to view your cart the link is to the paypal website itself - the way around this I was going with was to have an iframe and target it into there. Someone told me that I can use a php include for this instead? Could someone please give me an example of this? Thank you
<?php $my_page = "http://paypal.com/your-paypal-link.php"; //Where the include is from or what is included. include($my_page); //Including the page ?> PHP: But put your own link you'd like to include in the page.
Thanks for your replies guys - it maybe a dynamic link eg coming from a cart etc will that include still work? Also, there is a click here to continue shopping button on paypal - if I use include and then click on that button will it bring me back to my previous included page? Many thanks, Le007