Jump to content

As I can pass variables from a tpl file, to an external php?


Recommended Posts

Hi, I have the following problem:

 

I want to send from product.tpl a variable (or more) to an external php file.

 

What I do is the following

 

in product.tpl

 

{assign var='idproducto' value=$smarty.get.id_product}

<a href="http://localhost/gyc/themes/modules/tabrecetas/miphp.php?variable_idproducto={$idproducto}">Este el id del producto: {$idproducto}</a>

 

In miphp.php external

 

$variable_recibida_idproducto = $_GET['variable_idproducto'];
echo $variable_recibida_idproducto;

 

This does not work because I miphp.php show anything.

 

I searched the forums and have not found anything that might help (or do not know it) if someone can give me a hand I would appreciate very much.

 

Greetings to all

Link to comment
Share on other sites

×
×
  • Create New...