You can't call a PHP function directly from an HTML tag. You'll instead need
to do something like this:
<a href='/logout.php'>
Then create a logout.php file that has your logout code.
> From: [EMAIL PROTECTED] (Martin Johansson)
> Newsgroups: php.general
> Date: Mon, 3 Mar 2003 23:32:16 +0100
> To: [EMAIL PROTECTED]
> Subject: Re: functions and <a href>
>
> Ok to make it simplier, this is what I wanna do!
>
> <?php
>
> echo "<a href=logout();>Logout</A>";
>
> function logout()
> {
> .....
> }
>
> ?>
>
> How do I do it!!!
>
> /M
>
>> Hi
>> I want to call a function logout() inside an <a href> statement:
>>
>> <a href=\"<?= logout() ?>\">logout</a>
>>
>> <?php
>> function logout()
>> {
>> ....
>> }
>> ?>
>>
>> but this doesnt work.. how shall I do it
>> /M
>>
>>
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php