Re: [PHP] Re: PHP files in the SRC attribute of an SCRIPT element

2006-03-17 Thread Karl-Heinz Christian Zeck
Thank you very much. That was the problem, I didn't noticed that I don't use
the server path.



On 3/17/06, Barry <[EMAIL PROTECTED]> wrote:
>
> Karl-Heinz Christian Zeck wrote:
> > Thank you for your quick reply.
> >
> > I tried to modify the file. I removed all it's content and wrote only a
> > single line:
> > alert("test");
> >
> > When I refresh the main page, I get the alert message - this means the
> file
> > was loaded successfuly.
> >
> > Then I tried this code: alert("");
> >
> > This way it doesn't work, no alert message, so the file wasn't loaded.
> >
> > Any ideas?
> >
> Thats because you don't load the Javascript file over HTTP and load it
> locally.
> The webserver doesn't parse it that way.
> That way he just reads it and thats why it isnt parsed
>
> --
> Smileys rule (cX.x)C --o(^_^o)
> Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o)
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


Re: [PHP] Re: PHP files in the SRC attribute of an SCRIPT element

2006-03-17 Thread Jason Gerfen
Well on another note I see that you are trying to point to a local file 
on a windows machine (i.e. c:\path\to\php-script), that won't work but 
if you place the php script on the server it may.  i am unfamiliar with 
the organization you are refering to.


Karl-Heinz Christian Zeck wrote:

I cannot use such a code, because the file I'm using is added to the 
 element in the html page.
 
The guys from Horde, that created the files say this should work 
without any problems, but it doesn't. If you have any other 
suggestions, please let me know.
 
Thank you!

On 3/17/06, *Jason Gerfen* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote:

You will want to write PHP code to output the
java-script.  Because the
java-script (client side scripting) gets executed without
communicating
with the server there is no PHP engine that java-script can push
the PHP
through on the client machine.

So you would want to do something like:

alert( $string )";
echo $javascript;
?>

Karl-Heinz Christian Zeck wrote:

>Thank you for your quick reply.
>
>I tried to modify the file. I removed all it's content and wrote
only a
>single line:
>alert("test");
>
>When I refresh the main page, I get the alert message - this
means the file
>was loaded successfuly.
>
>Then I tried this code: alert("");
>
>This way it doesn't work, no alert message, so the file wasn't
loaded.
>
>Any ideas?
>
>Thanks!
>
>
>On 3/17/06, Barry <[EMAIL PROTECTED]
> wrote:
>
>
>>Karl-Heinz Christian Zeck wrote:
>>
>>
>>>Hi everybody,
>>>
>>>
>>>Are you allowed to do this? I mean, is the php file parsed by
the PHP
>>>
>>>
>>engine
>>
>>
>>>first and a js code is generated that will be used
>>>by the script element?
>>>
>>>
>>>
>>Yes
>>
>>
>>--
>>Smileys rule (cX.x)C --o(^_^o)
>>Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o)
>>
>>--
>>PHP General Mailing List ( http://www.php.net/)
>>To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>>
>>
>
>
>


--
Jason Gerfen

"You will never be ready for me."
~ Me





--
Jason Gerfen

"You will never be ready for me."
~ Me

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



Re: [PHP] Re: PHP files in the SRC attribute of an SCRIPT element

2006-03-17 Thread Karl-Heinz Christian Zeck
I cannot use such a code, because the file I'm using is added to the
 element in the html page.

The guys from Horde, that created the files say this should work without any
problems, but it doesn't. If you have any other suggestions, please let me
know.

Thank you!


On 3/17/06, Jason Gerfen <[EMAIL PROTECTED]> wrote:
>
> You will want to write PHP code to output the java-script.  Because the
> java-script (client side scripting) gets executed without communicating
> with the server there is no PHP engine that java-script can push the PHP
> through on the client machine.
>
> So you would want to do something like:
>
>  $string = "I want a new pop-up message";
> $javascript = "