PayPal

Hi all i found this link for paypal integration and in the process i got this error

undefined local variable or method `pay_bill_url'

what does it means

Cheers
Khan

here is the link http://www.funonrails.com/search?q=paypal&imageField.x=0&imageField.y=0&max-results=10

The error says that the route is not found.

For debugging, you need to check your routes. Try:

   rake routes | grep pay_bill

Something should show up, since the tutorials says to put this in the routes file:

match '/billing', :to => 'billing#create', :as => :pay_bill

Maybe rereading:

helps too