Forum Moderators: coopster
No, it is not possible to directly set a PHP public object property through the browser query string. Not unless you have the PHP script in the REQUEST containing the QUERY_STRING parse the data and set the public object property. For example, let's say your link is http://example.com/path/to/phpscript.php?property=newproperty. phpscript.php might do something like this ...
<?php
$newproperty = (isset($_GET['property'])) ? $_GET['property'] : '';
$myClass = new myClass();
$myClass->newproperty = $newproperty;
?>