Reputation: 115
So i managed to get a paypal checkout working,
the problem is, whenever it gets to the paypal checkout, theres no item description:
EDIT: i found out its not picking my database stuff anymore:
<input type='hidden' name='item_name' value='".$row['name']."'>
Upvotes: 0
Views: 79
Reputation: 31624
According to the HTML variable reference you should item_name
<input type='hidden' name='item_name' value='".$row['Description']."' />
Upvotes: 2