Luc Stey
Luc Stey

Reputation: 115

PHP Paypal item description

So i managed to get a paypal checkout working,

the problem is, whenever it gets to the paypal checkout, theres no item description: enter image description here

EDIT: i found out its not picking my database stuff anymore:

<input type='hidden' name='item_name' value='".$row['name']."'>

Upvotes: 0

Views: 79

Answers (2)

Luc Stey
Luc Stey

Reputation: 115

So, my database tables were empty...

Upvotes: 0

Machavity
Machavity

Reputation: 31624

According to the HTML variable reference you should item_name

<input type='hidden' name='item_name' value='".$row['Description']."' /> 

Upvotes: 2

Related Questions