[PHP-WIN] PHP, Classes, and PEAR

2004-11-18 Thread MikeA
WinXP Pro SP1 PHP 4.3.9 I am still learning PHP so please be gentle with me! LOL I am trying to send mail from my PC. For some reason it is not working. The line is mail($email_to, $email_subject, $email_message); There is no error or failure but the email is never sent. I also found a Mail c

[PHP-WIN] Re: Redirecting A Webpage

2004-11-18 Thread Allen D. Tate
Thanks to all who responded. I am very grateful. - Allen D. Tate, Founder Linux in Libraries http://www.linuxinlibraries.com/ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Redirecting A Webpage

2004-11-18 Thread Felipe Alcacibar
To redirect a page, you can use this 3 methods... php: the header function: header("Location: some_page.php"); html: the meta tag: javascript: the location.href property location.href='some_page.php'; // also you can refresh by seconds window.setTimeout('location.href="some_page.php";', 6

Re: [PHP-WIN] Redirecting A Webpage

2004-11-18 Thread paul . garcia
i use javascript such as: function changePage() { location = "http://www.whereever.com/nextpage.php"; } setTimeout("changePage()",1) the setTimeout function waits for 10 seconds (10,000 milliseconds) before r

Re: [PHP-WIN] Redirecting A Webpage

2004-11-18 Thread Larry E . Ullman
I would like to setup an index.php file to redirect to another .php file as soon as it is invoked, like [response.redirect] does in Active Server Pages. Does anyone know this cammand off the top of their head? Thanks in advance. :) use the header() function. header ("Location: http://www.site.co

RE: [PHP-WIN] Redirecting A Webpage

2004-11-18 Thread Charles P. Killmer
header("Location: http://www.google.com";); or header("Location: /otherfile.php"); -Original Message- From: Allen D. Tate [mailto:[EMAIL PROTECTED] Sent: Thursday, November 18, 2004 9:27 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Redirecting A Webpage I would like to setup an index.p

[PHP-WIN] Redirecting A Webpage

2004-11-18 Thread Allen D. Tate
I would like to setup an index.php file to redirect to another .php file as soon as it is invoked, like [response.redirect] does in Active Server Pages. Does anyone know this cammand off the top of their head? Thanks in advance. :) -- PHP Windows Mailing List (http://www.php.net/) To unsubscrib