On a Magento PHTML page, I get some values from dropdown boxes but those values can only be gotten using Javascript. I want to then assign it to Magento's custom session variables.
This is the billing.phtml page:
<script type="text/javascript">
$j(document).ready(function()
{
var vc=$j("#dropdown").val();
var currentSessionID = "<?php echo session_id(); ?>";
var data='phpc='+encodeURIComponent(vc)+'&ses='+currentSessionID;
$j.ajax({
url: '../../updatesession.php',
type: 'POST',
data: data
}).done(function(data){
//append the recieved data on success
});
});
</script>
OK, now the updatesession.php (this is a external Magento page)
<?php
require 'C:/folder/app/Mage.php';
Mage::app();
Mage::getSingleton('core/session', array('name' => 'frontend'));
Mage::getSingleton('core/session')->setBest($_POST['phpc']);
$_SESSION['phpc'] = $_POST['phpc'];
$f = new StdClass();
$f->calleSet= isset($_SESSION['phpc'])?true:false;
$f->sessID = session_id();
$f->callePostVal = isset($_POST['phpc'])?$_POST['phpc']:'';
echo json_encode($f);
?>
Now on another, this time Magento page, I do this:
<?php
session_start();
$sessionfree = Mage::getSingleton('core/session', array('name' => 'frontend'));
$calle= $sessionfree->getBest();
?>
Does not work. How can I use Magento's session functions on a external PHP page?