Hello,

this will not work, but what you can do is this:

$ser = serialize($this);
echo "<a href="foo.php?this=$ser">Bar</a>\n";

and then do this in foo.php:
$object = deserialize($_GET['this']);


Another way could be to use sessions, which will be a lot easier to work 
with in this case. (http://www.php.net/session_start)

Derick


Alexander Ross wrote:
> If $this is an object, can I have the following link?
> 
> <a href="process_this.php?this=$this">Process</a>
> 
> Will the URL become too long?  Will teh info get passed correctly? thanks
> 
> Alexander Ross
> 
> 
> 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to