Re: Apply the hyper link ( javascript functon ) with php

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Richard Lynch wrote:

>On Sun, October 8, 2006 6:53 pm, edwardspl@xxxxxxxxxx wrote:
>  
>
>>How to apply the following function with php ?
>><a href=javascript:popup('index.htm')> Test </a>
>>    
>>
>
>If you're new to PHP, be a minimalist, and pull out PHP only when you
>absolutely have to:
>
><a href="javascript:popup('<?php echo $dir?>/index.htm')"> Test </a>
>
>Since $dir is the ONLY part you want to be changing, use PHP only for
>that part.
>
>Switching in/out of PHP like this is very fast/cheap, and leaves you
>with HTML that mostly looks just like you are used to.
>
>YMMV
>
>  
>
Hello to you,

php web page ( test.php ) :

<script language="javascript" type="text/javascript">
<!--
function popup(page)
{
window.open(page,title, "height=100,width=100");
}
// -->
</script>

<a href="javascript:popup('./<?php echo $dir?>/index.htm')"> Test </a>

Result : "homepage error"

Web Server error log :

[Tue Oct 10 18:07:36 2006] [error] [client 202.108.22.70] File does not
exist: /home/web/index.htm
[Tue Oct 10 18:10:12 2006] [error] [client 61.135.145.217] File does not
exist: /home/web/test2004.htm
[Tue Oct 10 18:10:14 2006] [error] [client 61.135.145.217] File does not
exist: /home/web/readme.htm

Please help, thanks !

Edward.

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux