Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old August 22nd, 2005, 08:05 PM
Busy
Guest
 
Posts: n/a
Default Page transition in PHP

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
Default 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
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles