I have a problem. I would like to pass my Codeigniter Mysql variables (which I can use at the template as {{ category:country }} using this library http://simplehtmldom.sourceforge.net/ ) at a simple HTML-DOM URL variable. I tried lot of variation without result.
Here is the beginning of my code:
<?php
include_once('simple_html_dom.php');
ini_set('display_errors', true);
error_reporting(E_ALL);
$url = 'http://address.com/".{{ category:country }}."/';
?>
I would like to open the address, like if I got the germany variable, then parse this: http://address.com/germany .
Many thanks!