0

I have a backbone.js model

I also have a php form with a particular string stored in a $_GET[value] . I need to pass that string to a backbone model and update the values in the backbone variable with the value from the php variable.

jacobronniegeorge
  • 557
  • 1
  • 10
  • 21

1 Answers1

0

The value of your PHP Variable needs to be in your rendered page somewhere so that you can put it into a backbone model.

If you're trying to store the value via backbone.sync, that's a different story.

Posting some of your own code will probably get you a more direct answer.

damienc88
  • 1,957
  • 19
  • 34