prob

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robot Tree

    prob

    Anyone know how to do this?

    I have 25 *.gif files, all of the same dimensions. I want to display one at
    a time in the top middle of a dynamic web page, with 25 links below the
    display that will, when clicked, each display the corresponding file (I want
    to make just one web page to display the paintings rather than 25 separate
    pages).

    If anything, could I just have a link to a page that does this so I can
    figure it out myself?


  • nice.guy.nige

    #2
    Re: prob

    While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
    typed:
    [color=blue]
    > Anyone know how to do this?
    >
    > I have 25 *.gif files, all of the same dimensions. I want to display
    > one at a time in the top middle of a dynamic web page, with 25 links
    > below the display that will, when clicked, each display the
    > corresponding file (I want to make just one web page to display the
    > paintings rather than 25 separate pages).[/color]

    Try something along the lines of the following;

    <html>
    <head>
    <title>Pictur e Viewer</title>

    <script type="text/javascript">
    <!-- Hide

    function changeImg(url, alt)
    {
    document.images .imgView.src = url;
    document.images .imgView.alt = alt;
    }

    // Dunhidin -->
    </script>

    </head>
    <body>
    <p><img src="pict1.jpg" name="imgView" width="300" height="300" alt="Picture
    1"></p>
    <p>
    [ <a href="pict1.jpg " target="_blank" onclick="change Img('pict1.jpg' ,
    'Picture 1'); return false">1</a> |
    <a href="pict2.jpg " target="_blank" onclick="change Img('pict2.jpg' , 'Picture
    2'); return false">2</a> |
    <a href="pict3.jpg " target="_blank" onclick="change Img('pict3.jpg' , 'Picture
    3'); return false">3</a> |
    <a href="pict4.jpg " target="_blank" onclick="change Img('pict4.jpg' , 'Picture
    4'); return false">4</a> |
    <a href="pict5.jpg " target="_blank" onclick="change Img('pict5.jpg' , 'Picture
    5'); return false">5</a> ]
    </p>
    </body>
    </html>

    .... Tested and working on IE6, Moz5 and NS4.7 (though the alt text doesn't
    change in NS4.7).

    You may be better off using a server-side solution such as PHP, though, if
    that option is available to you. I would happily rewrite the script for PHP
    if you wanted.

    Cheers,
    Nige

    --
    Nigel Moss.

    Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
    http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
    "How strange the change from major to minor..."


    Comment

    • Robot Tree

      #3
      Re: prob

      "nice.guy.n ige" <nigel_moss@dea dspam.com> wrote in message
      news:bf8ste$bcp en$1@ID-112325.news.uni-berlin.de...[color=blue]
      > While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
      > typed:
      >[color=green]
      > > Anyone know how to do this?
      > >
      > > I have 25 *.gif files, all of the same dimensions. I want to display
      > > one at a time in the top middle of a dynamic web page, with 25 links
      > > below the display that will, when clicked, each display the
      > > corresponding file (I want to make just one web page to display the
      > > paintings rather than 25 separate pages).[/color]
      >
      > Try something along the lines of the following;
      >
      > <html>
      > <head>
      > <title>Pictur e Viewer</title>
      >
      > <script type="text/javascript">
      > <!-- Hide
      >
      > function changeImg(url, alt)
      > {
      > document.images .imgView.src = url;
      > document.images .imgView.alt = alt;
      > }
      >
      > // Dunhidin -->
      > </script>
      >
      > </head>
      > <body>
      > <p><img src="pict1.jpg" name="imgView" width="300" height="300"[/color]
      alt="Picture[color=blue]
      > 1"></p>
      > <p>
      > [ <a href="pict1.jpg " target="_blank" onclick="change Img('pict1.jpg' ,
      > 'Picture 1'); return false">1</a> |
      > <a href="pict2.jpg " target="_blank" onclick="change Img('pict2.jpg' ,[/color]
      'Picture[color=blue]
      > 2'); return false">2</a> |
      > <a href="pict3.jpg " target="_blank" onclick="change Img('pict3.jpg' ,[/color]
      'Picture[color=blue]
      > 3'); return false">3</a> |
      > <a href="pict4.jpg " target="_blank" onclick="change Img('pict4.jpg' ,[/color]
      'Picture[color=blue]
      > 4'); return false">4</a> |
      > <a href="pict5.jpg " target="_blank" onclick="change Img('pict5.jpg' ,[/color]
      'Picture[color=blue]
      > 5'); return false">5</a> ]
      > </p>
      > </body>
      > </html>
      >
      > ... Tested and working on IE6, Moz5 and NS4.7 (though the alt text doesn't
      > change in NS4.7).
      >
      > You may be better off using a server-side solution such as PHP, though, if
      > that option is available to you. I would happily rewrite the script for[/color]
      PHP[color=blue]
      > if you wanted.
      >
      > Cheers,
      > Nige
      >
      > --
      > Nigel Moss.
      >
      > Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
      > http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
      > "How strange the change from major to minor..."
      >
      >[/color]

      Thanks for the solution, Nigel. The reason I asked for a javascript is that
      after initially asking for a php solution (in alt.php), all I received was,
      "you should use a client-side solution such as javascript or dhtml." I hate
      to trouble you into contriving a whole new solution if the one you've
      provided works fine, but if you don't mind I'd at least like to know what
      some of the differences are between using, for this particular problem,
      client-side and server-side code so that I can improve my decisions in
      choosing the right type of solution before requesting one.
      Thanks again, Nigel.
      Steve


      Comment

      • nice.guy.nige

        #4
        Re: prob

        While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
        typed:
        [color=blue]
        > "nice.guy.n ige" <nigel_moss@dea dspam.com> wrote in message
        > news:bf8ste$bcp en$1@ID-112325.news.uni-berlin.de...[/color]
        [...][color=blue][color=green]
        >> ... Tested and working on IE6, Moz5 and NS4.7 (though the alt text
        >> doesn't change in NS4.7).
        >>
        >> You may be better off using a server-side solution such as PHP,
        >> though, if that option is available to you. I would happily rewrite
        >> the script for PHP if you wanted.[/color][/color]
        [color=blue]
        > Thanks for the solution, Nigel. The reason I asked for a javascript
        > is that after initially asking for a php solution (in alt.php), all I
        > received was, "you should use a client-side solution such as
        > javascript or dhtml."
        > I hate to trouble you into contriving a whole
        > new solution if the one you've provided works fine, but if you don't
        > mind I'd at least like to know what some of the differences are
        > between using, for this particular problem, client-side and server-
        > side code so that I can improve my decisions in choosing the right
        > type of solution before requesting one. Thanks again, Nigel.[/color]

        No worries. I have one lying around here somewhere! (It's actually a fairly
        simple script). I'll sort one out for you later. But now... It's pub time!

        Cheers,
        Nige

        --
        Nigel Moss.

        Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
        http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
        "How strange the change from major to minor..."


        Comment

        • nice.guy.nige

          #5
          Re: prob

          While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
          typed:
          [color=blue]
          > "nice.guy.n ige" <nigel_moss@dea dspam.com> wrote in message
          > news:bf8ste$bcp en$1@ID-112325.news.uni-berlin.de...[/color]
          [...][color=blue][color=green]
          >> ... Tested and working on IE6, Moz5 and NS4.7 (though the alt text
          >> doesn't change in NS4.7).
          >>
          >> You may be better off using a server-side solution such as PHP,
          >> though, if that option is available to you. I would happily rewrite
          >> the script for PHP if you wanted.[/color][/color]
          [color=blue]
          > Thanks for the solution, Nigel. The reason I asked for a javascript
          > is that after initially asking for a php solution (in alt.php), all I
          > received was, "you should use a client-side solution such as
          > javascript or dhtml." I hate to trouble you into contriving a whole
          > new solution if the one you've provided works fine, but if you don't
          > mind I'd at least like to know what some of the differences are
          > between using, for this particular problem, client-side and server-
          > side code so that I can improve my decisions in choosing the right
          > type of solution before requesting one. Thanks again, Nigel.[/color]

          Hi Steve,

          One big advantage of server-side over client-side is that you don't have to
          rely on the products used by the end-user. The server-side script produces
          the html code and the server serves it to the end user. Shazam! The
          javascript version relies on javascript being available to - and enabled
          by - the end user. Also, different browsers handle the javascript in
          different ways, wheras here it is sending nothing but html to the end user,
          which will be interpreted in pretty much the same way by most browsers.

          Have a go at this. Save it as imgDisplay.php and set the path to point to
          where the images are stored.

          <html>
          <head>
          <title>Imgage Display using PHP</title>
          </head>

          <body>
          <h1>Image Display using PHP</h1>

          <?PHP
          if(!isset($pn)) {
          $pn = "pict1.jpg" ;
          $alt = "picture one";
          }

          $path="./";
          $picname = $path.$pn;
          $pic_size = getimagesize("$ picname");

          print("<p>");
          print("<img src=\"$picname\ " $pic_size[3] alt=\"$alt\">") ;
          print("</p>");
          ?>

          <p>[
          <a href="imgDispla y.php?pn=pict1. jpg&amp;alt=pic ture%20one">1</a> |
          <a href="imgDispla y.php?pn=pict2. jpg&amp;alt=pic ture%20two">2</a> |
          <a href="imgDispla y.php?pn=pict3. jpg&amp;alt=pic ture%20three">3 </a> |
          <a href="imgDispla y.php?pn=pict4. jpg&amp;alt=pic ture%20four">4</a> |
          <a href="imgDispla y.php?pn=pict5. jpg&amp;alt=pic ture%20five">5</a>
          ]</p>

          </body>
          </html>

          .... This could be expanded to hold all the alt texts in an array (so you
          could have more complicated alt text without ending up with an
          incomprehensibl e URL!) for example.

          Hope that helps,
          Nige

          --
          Nigel Moss.

          Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
          http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
          "How strange the change from major to minor..."


          Comment

          • Robot Tree

            #6
            Re: prob

            "nice.guy.n ige" <nigel_moss@dea dspam.com> wrote in message
            news:bfbf3o$d18 e6$1@ID-112325.news.uni-berlin.de...[color=blue]
            > While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
            > typed:
            >[color=green]
            > > "nice.guy.n ige" <nigel_moss@dea dspam.com> wrote in message
            > > news:bf8ste$bcp en$1@ID-112325.news.uni-berlin.de...[/color]
            > [...][color=green][color=darkred]
            > >> ... Tested and working on IE6, Moz5 and NS4.7 (though the alt text
            > >> doesn't change in NS4.7).
            > >>
            > >> You may be better off using a server-side solution such as PHP,
            > >> though, if that option is available to you. I would happily rewrite
            > >> the script for PHP if you wanted.[/color][/color]
            >[color=green]
            > > Thanks for the solution, Nigel. The reason I asked for a javascript
            > > is that after initially asking for a php solution (in alt.php), all I
            > > received was, "you should use a client-side solution such as
            > > javascript or dhtml." I hate to trouble you into contriving a whole
            > > new solution if the one you've provided works fine, but if you don't
            > > mind I'd at least like to know what some of the differences are
            > > between using, for this particular problem, client-side and server-
            > > side code so that I can improve my decisions in choosing the right
            > > type of solution before requesting one. Thanks again, Nigel.[/color]
            >
            > Hi Steve,
            >
            > One big advantage of server-side over client-side is that you don't have[/color]
            to[color=blue]
            > rely on the products used by the end-user. The server-side script produces
            > the html code and the server serves it to the end user. Shazam! The
            > javascript version relies on javascript being available to - and enabled
            > by - the end user. Also, different browsers handle the javascript in
            > different ways, wheras here it is sending nothing but html to the end[/color]
            user,[color=blue]
            > which will be interpreted in pretty much the same way by most browsers.
            >
            > Have a go at this. Save it as imgDisplay.php and set the path to point to
            > where the images are stored.
            >
            > <html>
            > <head>
            > <title>Imgage Display using PHP</title>
            > </head>
            >
            > <body>
            > <h1>Image Display using PHP</h1>
            >
            > <?PHP
            > if(!isset($pn)) {
            > $pn = "pict1.jpg" ;
            > $alt = "picture one";
            > }
            >
            > $path="./";
            > $picname = $path.$pn;
            > $pic_size = getimagesize("$ picname");
            >
            > print("<p>");
            > print("<img src=\"$picname\ " $pic_size[3] alt=\"$alt\">") ;
            > print("</p>");
            > ?>
            >
            > <p>[
            > <a href="imgDispla y.php?pn=pict1. jpg&amp;alt=pic ture%20one">1</a> |
            > <a href="imgDispla y.php?pn=pict2. jpg&amp;alt=pic ture%20two">2</a> |
            > <a href="imgDispla y.php?pn=pict3. jpg&amp;alt=pic ture%20three">3 </a> |
            > <a href="imgDispla y.php?pn=pict4. jpg&amp;alt=pic ture%20four">4</a> |
            > <a href="imgDispla y.php?pn=pict5. jpg&amp;alt=pic ture%20five">5</a>
            > ]</p>
            >
            > </body>
            > </html>
            >
            > ... This could be expanded to hold all the alt texts in an array (so you
            > could have more complicated alt text without ending up with an
            > incomprehensibl e URL!) for example.
            >
            > Hope that helps,
            > Nige
            >
            > --
            > Nigel Moss.
            >
            > Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
            > http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
            > "How strange the change from major to minor..."
            >
            >[/color]

            Wow, thanks Nigel! This is great information...I 'm learning more and more
            about how this stuff works. It really makes it so much easier to learn when
            the code is so tidy like you've made it. I've been using www.php.net to
            learn more about the code you gave me and I swear I've almost got it
            working. I've adapted your solution to fit the proper titles, filenames,
            file extensions, etc. As you will see, there are 25 gifs I'm trying to have
            available for display. The error message that I keep getting is this:

            "Parse error: parse error, unexpected T_STRING in
            d:\websites\ste vedurkinnet\www root\TMPbjeclic k0n.php on line 27"

            Line 27 is the first of the 25 lines that look like this: <a href="problem
            lies somewhere in here"></a>.
            I'm developing a decent understanding of some of the variables you've
            defined and how they interact, but I don't understand the purpose of the
            $alt variable or the &amp thing that separates the href="XXXXXX" from the
            alt="XXXXXX" You've been such great help so far that I feel guilty asking
            anything else of you, but I feel that I am so very close to having the final
            solution. And for what it's worth to you, you'll be the first person to see
            my digital paintings.

            Thanks for everything, Nigel,
            Steve

            Here is the code:

            <html>
            <head>
            <title>Painting s</title>
            <link href="Style Sheets/Style01.css" rel="stylesheet " type="text/css">
            </head>

            <body>
            <div align="center">

            <?PHP
            if(!isset($pn)) {
            $pn = "Animals.gi f";
            $alt = "picture one";
            }

            $path = "Images\Paintin gs\";
            $picname = $path.$pn;
            $pic_size = getimagesize($p icname);

            print(<p>);
            print(<img src=\"$picname\ " $pic_size[3] alt=\"$alt\">);
            print(</p>);
            ?>

            <p>
            <a href="Paintings .php?pn=Animals .gif&amp;alt=pi cture%20one">An imals</a> |
            <a
            href="Paintings .php?pn=Antimat ter.gif&amp;alt =picture%20two" >Antimatter</a>
            |
            <a href="Paintings .php?pn=Battle. gif&amp;alt=pic ture%20three">B attle</a> |
            <a href="Paintings .php?pn=Bear.gi f&amp;alt=pictu re%20four">Bear </a> |
            <a href="Paintings .php?pn=Bird.gi f&amp;alt=pictu re%20five">Bird </a> |
            <a href="Paintings .php?pn=Cabin.g if&amp;alt=pict ure%20six">Cabi n</a> |
            <a href="Paintings .php?pn=Castle. gif&amp;alt=pic ture%20seven">C astle</a> |
            <a href="Paintings .php?pn=City.gi f&amp;alt=pictu re%20eight">Cit y</a> |
            <a href="Paintings .php?pn=Colorad o.gif&amp;alt=p icture%20nine"> Colorado</a>
            |
            <a
            href="Paintings .php?pn=Droidli ng%20and%20Moth er.gif&amp;alt= picture%20ten"> D
            roidling and Mother</a> |
            <a href="Paintings .php?pn=Dude.gi f&amp;alt=pictu re%20eleven">Du de</a> |
            <a
            href="Paintings .php?pn=Eating% 20Demon.gif&amp ;alt=picture%20 twelve">Eating
            Demon</a> |
            <a href="Paintings .php?pn=Faces.g if&amp;alt=pict ure%20thirteen" >Faces</a> |
            <a href="Paintings .php?pn=House.g if&amp;alt=pict ure%20fourteen" >House</a> |
            <a href="Paintings .php?pn=Path.gi f&amp;alt=pictu re%20fifteen">P ath</a> |
            <a href="Paintings .php?pn=Phantom .gif&amp;alt=pi cture%20sixteen ">Phantom</a>
            |
            <a href="Paintings .php?pn=Plan.gi f&amp;alt=pictu re%20seventeen" >Plan</a> |
            <a href="Paintings .php?pn=Skull.g if&amp;alt=pict ure%20eighteen" >Skull</a> |
            <a
            href="Paintings .php?pn=Snowman .gif&amp;alt=pi cture%20ninetee n">Snowman</a> |
            <a href="Paintings .php?pn=Star.gi f&amp;alt=pictu re%20twenty">St ar</a> |
            <a href="Paintings .php?pn=Tree.gi f&amp;alt=pictu re%20twentyone" >Tree</a> |
            <a href="Paintings .php?pn=Vortex. gif&amp;alt=pic ture%20twentytw o">Vortex</a>
            |
            <a href="Paintings .php?pn=Warp.gi f&amp;alt=pictu re%20twentythre e">Warp</a> |
            <a
            href="Paintings .php?pn=Wizard. gif&amp;alt=pic ture%20twentyfo ur">Wizard</a> |
            <a href="Paintings .php?pn=Wolf.gi f&amp;alt=pictu re%20twentyfive ">Wolf</a>
            </p>

            </div>
            </body>
            </html>


            Comment

            • nice.guy.nige

              #7
              Re: prob

              While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
              typed:

              [...][color=blue]
              > "Parse error: parse error, unexpected T_STRING in
              > d:\websites\ste vedurkinnet\www root\TMPbjeclic k0n.php on line 27"[/color]
              [...]

              Hi Steve,

              Just got back from the pub this time... so, I'll have a look at your code
              tomorrow! ;-) Will report back...

              Cheers,
              Nige

              --
              Nigel Moss.

              Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
              http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
              "How strange the change from major to minor..."


              Comment

              • Robot Tree

                #8
                Re: prob


                "nice.guy.n ige" <nigel_moss@dea dspam.com> wrote in message
                news:bffbjn$d6q co$1@ID-112325.news.uni-berlin.de...[color=blue]
                > While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
                > typed:
                >
                > [...][color=green]
                > > "Parse error: parse error, unexpected T_STRING in
                > > d:\websites\ste vedurkinnet\www root\TMPbjeclic k0n.php on line 27"[/color]
                > [...]
                >
                > Hi Steve,
                >
                > Just got back from the pub this time... so, I'll have a look at your code
                > tomorrow! ;-) Will report back...
                >
                > Cheers,
                > Nige
                >
                > --
                > Nigel Moss.
                >
                > Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
                > http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
                > "How strange the change from major to minor..."
                >
                >[/color]

                Hey Nigel,
                I inserted a backslash between the equals sign and the quotation mark in
                each of the problem lines. They now appear like this:

                <a href=\"Painting s.php?...... instead of
                <a href="Paintings .php?......

                It appears to me to have solved that particular parse error, because I'm now
                getting a new parse error on a later line, which I suppose means that every
                line preceding the error line is interpretable, but please let me know if I
                am wrong in my conjecture. Anyhow, the new error is on line 55, which is
                the last line:

                </html>

                Here is the error:

                Parse error: parse error, unexpected $end in
                d:\websites\ste vedurkinnet\www root\TMP3ce85if ltp.php on line 55

                I haven't even begun trying to figure this one out because I didn't want to
                waste your with the problem that appears to now be solved (but again I could
                be wrong about that too), and I can assure you I consider it unhealthy to
                rely on others without trying to solve these problems myself, but I'd
                appreciate any readily avaliable solutions because I'm eager to get this
                page up.

                Thanks Nige,
                Steve

                Here is the updated code:


                <html>
                <head>
                <title>Painting s</title>
                <link href="Style Sheets/Style01.css" rel="stylesheet " type="text/css">
                </head>

                <body>
                <div align="center">

                <?PHP
                if(!isset($pn)) {
                $pn = "Animals.gi f";
                $alt = "picture one";
                }

                $path = "Images\Paintin gs\";
                $picname = $path.$pn;
                $pic_size = getimagesize($p icname);

                print(<p>);
                print(<img src=\"$picname\ " $pic_size[3] alt=\"$alt\">);
                print(</p>);
                ?>

                <p>
                <a href=\"Painting s.php?pn=Animal s.gif&amp;alt=A nimals.gif">Ani mals</a> |
                <a
                href=\"Painting s.php?pn=Antima tter.gif&amp;al t=picture%20two ">Antimatte r</a>
                |
                <a href=\"Painting s.php?pn=Battle .gif&amp;alt=pi cture%20three"> Battle</a> |
                <a href=\"Painting s.php?pn=Bear.g if&amp;alt=pict ure%20four">Bea r</a> |
                <a href=\"Painting s.php?pn=Bird.g if&amp;alt=pict ure%20five">Bir d</a> |
                <a href=\"Painting s.php?pn=Cabin. gif&amp;alt=pic ture%20six">Cab in</a> |
                <a href=\"Painting s.php?pn=Castle .gif&amp;alt=pi cture%20seven"> Castle</a> |
                <a href=\"Painting s.php?pn=City.g if&amp;alt=pict ure%20eight">Ci ty</a> |
                <a href=\"Painting s.php?pn=Colora do.gif&amp;alt= picture%20nine" >Colorado</a>
                |
                <a
                href=\"Painting s.php?pn=Droidl ing%20and%20Mot her.gif&amp;alt =picture%20ten" >
                Droidling and Mother</a> |
                <a href=\"Painting s.php?pn=Dude.g if&amp;alt=pict ure%20eleven">D ude</a> |
                <a
                href=\"Painting s.php?pn=Eating %20Demon.gif&am p;alt=picture%2 0twelve">Eating
                Demon</a> |
                <a href=\"Painting s.php?pn=Faces. gif&amp;alt=pic ture%20thirteen ">Faces</a> |
                <a href=\"Painting s.php?pn=House. gif&amp;alt=pic ture%20fourteen ">House</a> |
                <a href=\"Painting s.php?pn=Path.g if&amp;alt=pict ure%20fifteen"> Path</a> |
                <a
                href=\"Painting s.php?pn=Phanto m.gif&amp;alt=p icture%20sixtee n">Phantom</a> |
                <a href=\"Painting s.php?pn=Plan.g if&amp;alt=pict ure%20seventeen ">Plan</a> |
                <a href=\"Painting s.php?pn=Skull. gif&amp;alt=pic ture%20eighteen ">Skull</a> |
                <a
                href=\"Painting s.php?pn=Snowma n.gif&amp;alt=p icture%20ninete en">Snowman</a>
                |
                <a href=\"Painting s.php?pn=Star.g if&amp;alt=pict ure%20twenty">S tar</a> |
                <a href=\"Painting s.php?pn=Tree.g if&amp;alt=pict ure%20twentyone ">Tree</a> |
                <a
                href=\"Painting s.php?pn=Vortex .gif&amp;alt=pi cture%20twentyt wo">Vortex</a> |
                <a href=\"Painting s.php?pn=Warp.g if&amp;alt=pict ure%20twentythr ee">Warp</a>
                |
                <a
                href=\"Painting s.php?pn=Wizard .gif&amp;alt=pi cture%20twentyf our">Wizard</a>
                |
                <a href=\"Painting s.php?pn=Wolf.g if&amp;alt=pict ure%20twentyfiv e">Wolf</a>
                </p>

                </div>
                </body>
                </html>


                Comment

                • nice.guy.nige

                  #9
                  Re: prob

                  While the city slept, Robot Tree <steve@stevedur kin.net> feverishly
                  typed:
                  [color=blue]
                  > Okay ignore that last one too...I've fixed another thing...how about
                  > this? I'll get back to this A.S.A. I get to a real stopping
                  > point...then I'll ask you for help...I'm almost there, Nige.
                  > Thanks for everything,[/color]

                  Good luck. Hope you get it sorted out. If you do have any further problems,
                  then I will be only too glad to help out if I can. As this is now a PHP
                  issue and no longer a javascript one (And therefore off-topic in this
                  group), it would probably be better if you sent any more correspondence on
                  the matter straight to my email (note that my email address is an
                  autoresponder. Follow the instructions in my Sig below for the real
                  address).

                  Let me know how you get on in any case.

                  Cheers,
                  Nige

                  --
                  Nigel Moss.

                  Email address is not valid. nigel@nigenetDO G.org.uk. Take the dog out!
                  http://www.nigenet.org.uk | Boycott E$$O!! http://www.stopesso.com
                  "How strange the change from major to minor..."


                  Comment

                  Working...