Possible Duplicate:
How do I use PHP variables as values for the <script> tag when rendering jQuery code in my CakePHP view?
CakePHP, url bir parametre olarak iletilen değer kontrolör niteliği tarafından elde edilebilir
<?php $userid= $this->params['pass'][0];?>
Ben jQuery kodu içinde $ kimliği kullanmak istiyorum.
$("#displayPanel #saveForm").live("click", function(){
document.location = 'http://localhost/cake_1_2/forms/homepage';
});//Click on SaveForm
Userid 12 ise varsayalım, ben document.location 'http://localhost/cake_1_2/forms/homepage/12' olmak gerekir.
JQuery php değişkeni nasıl kullanılır?