Posted by Janwillem Borleffs on 06/08/05 11:47
Janwillem Borleffs wrote:
> When you are working on a Windows box, you can do something like:
>
> case "LINK" && trim($data): {
> ...
> }
>
In this case, you should assign the value to the $this->link variable,
rather then concatenate it:
case "LINK" && trim($data): {
$id = $this->newLink($data);
$this->link = "display.php?aid=$id";
break;
}
JW
[Back to original message]
|