Connecting Tech Pros Worldwide Help | Site Map

Page transition in PHP

  #1  
Old August 22nd, 2005, 08:05 PM
Busy
Guest
 
Posts: n/a
Hello Everyone

Please can someone point me in the direction of a really good tutorial or
discussion on PHP page transition?

What I'm looking for is coverage of page transition that covers:

Breaking out of frames in PHP - for and against arguments with examples;

Carrying forward variables - the various methods of moving variables from
one page to another with dialogs on the merits of each, covering $_POST,
$_REQUEST, $_SESSION and other variable types;

Page transition - types and the merits of each - such as simple transition
(one page name moving to the next page name) down to page rewrite - only
one page name that rewrites its self dependant on say the menu item that
you select and maybe calls in 'requires' to acomplish this;

Not too much there is there? Strangely when searching the internet for
tutorials and discussion on this subject, the only pages I can find are
requests for the same thing. Many excellent sites have excellent tutorials
on many aspects of using PHP, but equally they seem to overlook this very
basic area of expertise - because it's so basic!

Thanks

Nick

  #2  
Old August 22nd, 2005, 10:25 PM
Ken Robinson
Guest
 
Posts: n/a

re: Page transition in PHP


Busy <busyremove@blueyonder.co.uk> wrote in
news:Xns96BACAE6C10B4busyremoveblueyonder@194.117. 143.37:
[color=blue]
> Hello Everyone
>
> Please can someone point me in the direction of a really good tutorial
> or discussion on PHP page transition?
>
> What I'm looking for is coverage of page transition that covers:
>
> Breaking out of frames in PHP - for and against arguments with
> examples;[/color]

You won't find any tutorials since PHP runs on the SERVER and doesn't
know or care what the display looks like. In fact, there's nothing to say
that a PHP script has to generate any visible output. Displaying the
information is the job of the Browser on the client, so you need to look
at client scripts for display options. A PHP script can write Javascript
that could control the display.

[color=blue]
>
> Carrying forward variables - the various methods of moving variables
> from one page to another with dialogs on the merits of each, covering
> $_POST, $_REQUEST, $_SESSION and other variable types;[/color]

You left out one method: $_GET. An indepth discussion is beyond the scope
of this post.
[color=blue]
>
> Page transition - types and the merits of each - such as simple
> transition (one page name moving to the next page name) down to page
> rewrite - only one page name that rewrites its self dependant on say
> the menu item that you select and maybe calls in 'requires' to
> acomplish this;
>
> Not too much there is there? Strangely when searching the internet
> for tutorials and discussion on this subject, the only pages I can
> find are requests for the same thing. Many excellent sites have
> excellent tutorials on many aspects of using PHP, but equally they
> seem to overlook this very basic area of expertise - because it's so
> basic![/color]

See above, you didn't find anything, because page transitions can't be
done in PHP, not that it is so basic.

Ken
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help with a javascript transition scoobydoo9749 answers 4 September 24th, 2007 10:15 PM
Page transition question Workgroups answers 8 July 23rd, 2005 10:35 PM
is any work being done to fix/improve PHP's string handling beyond 8 bits? lkrubner@geocities.com answers 6 July 17th, 2005 02:28 PM
Calling TCL function from PHP 4.3 David McTavish answers 1 July 17th, 2005 01:36 AM