Michael Thanry wrote:
>
> Hello everyone!
>
> Is there a way to unset or expire a cookie which was not set by my pages?
Overriding an existing cookie with setcookie()and 1 sec expiry should do the
trick.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTE
Chip Landwehr wrote:
>
> I can't do that because the form is to big and there is a limit to how much
> data you can send via the URL bar. Any other ideas?
Use cookies.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:
No. You cannot initiate multiple transactions that way (at least not without
considerable glue outside of PHP, such as JavaScript etc to cause the browser
to initiate multiple transactions; but it cannot be done directly from the
server side as the client only asked for one file).
You could z
Martin Lindhe wrote:
>
> Bug in str_replace(), PHP 4.0.6
>
> $text = "hello world";
> $out = str_replace(" "," ",$text);
> echo $out;
>
> Expected output:
> "hello world"
>
> Actual output:
> "hello world"
>
> Of course, this is what happens if str_
4 matches
Mail list logo