Re: [PHP] transfer parameters

2001-11-19 Thread Brian Clark
Hi Astenios, @ 5:35:28 PM on 11/19/2001, astenios wrote: a> I'm trying to transfer a variable from one web-page to another a> The source page (http://astenios.hn.org/php/wall.php) is like a> echo ' >'; a> echo '', $row[1], ' '; Try: -- -Brian Clark | PGP is spoken here: 0xE4D0C7C8

[PHP] transfer parameters

2001-11-19 Thread astenios
Hi I'm trying to transfer a variable from one web-page to another The source page (http://astenios.hn.org/php/wall.php) is like echo ' '; echo '', $row[1], ' '; and target(http://astenios.hn.org/php/detall.php) catch it by: $codi = urldecode($codi); echo 'codi = ', $codi; This do not work.