[PHP-WIN] Back button in PHP

2007-02-01 Thread Alf Stockton
I seem to remember that there was a simple call to get reference to the the screen previous to where the client currently is. Please remind me how this is done? I need to place a Back button on my clients screens. -- Regards, Alf Stocktonwww.stockton.co.za You will be married within

Re: [PHP-WIN] Back button in PHP

2007-02-01 Thread Jarrett Meyer
$_SERVER["HTTP_REFERER"] is the previous page provided that the user got to the current page by following a link. This can be spoofed, so it isn't perfect. - Original Message From: Alf Stockton <[EMAIL PROTECTED]> To: php windows Sent: Thursday, February 1, 2007 8:59:23 AM Subject: [PH

Re: [PHP-WIN] Back button in PHP

2007-02-01 Thread Andreas Lysdal
It only possible in javascript: try this link a then search: http://javascriptsource.internet.com/ Alf Stockton skrev: I seem to remember that there was a simple call to get reference to the the screen previous to where the client currently is. Please remind me how this is done? I need to

[PHP-WIN] Search results

2007-02-01 Thread Harpreet
I have a search page on my web application that searches a database with 1000's of rows. The search results are returned in like 45-50 seconds. If the user goes to another page and then returns to the same page again it takes the same amount of time. Is there a way to use session variables to rem

Re: [PHP-WIN] Search results

2007-02-01 Thread Armando
I think before trying this you should take a closer look at your database and query structure to determine what is causing a 45 to 50 second delay in getting the results. It may be that you just need to optimize a bit. For instance, if you have a large number of columns and are using select *,

Fwd: [PHP-WIN] Back button in PHP

2007-02-01 Thread Martin Alsinet
-- Forwarded message -- From: Martin Alsinet <[EMAIL PROTECTED]> Date: 02-Feb-2007 00:20 Subject: Re: [PHP-WIN] Back button in PHP To: Alf Stockton <[EMAIL PROTECTED]> Hi Alf On 01/02/07, Alf Stockton <[EMAIL PROTECTED]> wrote: I seem to remember that there was a simple call to

RE: [PHP-WIN] Search results

2007-02-01 Thread Gustav Wiberg
Hi! I agree to Armando about the optimasation about the search-query. If you show some bit of code (it may be useful only with the actual query used to search), we maybe can help you! Best regards /Gustav Wiberg HMN Konsult (Sweden) http://www.hmn.se/ -Original Message- From: Harpre