|
Posted by Shelly on 11/12/35 11:21
"julian maisano" <julianmaisanoXYZ@gmail.com> wrote in message
news:dba2ch$3d7$1@domitilla.aioe.org...
> Shelly wrote:
>> in detallearticulo.php do you have line like?
>>
>> $id_articulo = $_GET['id_articulo'];
>>
>> Shelly
>
> Absolutely not :(
>
> I didn't know it was requeired. I'll look to php.net to see what the hell
> is $_GET ...
>
> By the way, I looked an example that didn't have $_GET and worked though
>
> thanks - jm
When you pass values in the caller page by:
calledpage,php?thing1=value1&thing2=value2
you get them in the called page, calledpage.php, by:
$variable1 = $_GET['thing1'];
$variable2 = $_GET['thing2'];
Shelly
Navigation:
[Reply to this message]
|