View Single Post

  #3 (permalink)  
Old 05-22-2006
Toby Inkster
 
Posts: n/a
Default Re: does PHP read left to right or right to left?

lawrence k wrote:

> I've two functions. currentHeadline looks in $_GET for a variable
> called 'image' and prints what it finds. showThumbnail takes an image
> for a parameter and resizes it before sending it to the screen. But
> when I do this:
>
> <?php showThumbnail(currentImage(), 20, 20); ?>


currentImage() will execute before showThumbnail().

When you say "prints what it finds", do you really mean "returns what it
finds"? If you're not 100% sure of what the difference between these two
phrases is, then post the source code for currentImage().

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

Reply With Quote