|
Posted by Jerry Stuckle on 05/05/06 05:19
Garry Jones wrote:
> For a photo display I am using a javascript I found on the net (freeware).
> The Java script code has to be placed within head and /head tags
>
> The Java code consists of the start
>
> <script language="JavaScript1.2">
>
> Then about 150 lines of script followed by values I have to write in
>
> and then about another 150 lines of Java script before the
> </script>
>
> The values I have to write in are the names of the files in this format
>
> Pic[0] = 'img/2005/horiz/image0.jpg'
> Pic[1] = 'img/2005/horiz/image1.jpg'
> Pic[2] = 'img/2005/horiz/image2.jpg'
> Pic[3] = 'img/2005/horiz/image3.jpg'
>
> I have placed these in a php file and I use Include from the middle of the
> java script to call these in. It works fine for these four files
>
> As I have 3600 lines to write I would like to use a php echo to write the
> lines into the java script. Something along the lines of
>
> <?
> i=0;
> While ($i<3601){
> echo "Pic[";
> echo $i;
> echo"] = 'img/2005/horiz/image";
> echo $i;
> echo ".jpg'";
> i++;
> }
> ?>
>
> But it does not work and I have played around with the syntax and tried
> varying methods. Is this because Java script does not like too much php code
> and its conflicting. Or should I be able to use php code freely from within
> the Java script and I have simply created a php syntax error.
>
> The page fails to load. Checking the source code in MSIE reveals that it
> stops working in the middle of the Java when it comes to the php code.
>
> Any help appreciated.
>
> A footnote to this is that I wonder what php++ does to the number "0" if it
> is written "0000", would the "++" method give an output of 0001 or 1?
>
> Garry Jones
> Sweden
>
>
>
>
>
>
>
Garry,
I don't understand. Are you trying to call PHP code from Javascript? If so, it
doesn't work well - PHP is server-side, and Javascript (Not Java script!) is
client-side.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|