RE: [PHP] Redirect using PHP to a "new" browser window.

2001-03-06 Thread Nick Norton

If the only thing you plan on doing after incrementing your counter is going
to the new page, why not put the target="_blank" in the  tag that points
to your script.  Then you'll do your counter script and redirect when you're
already in a new window.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Please Help!!!! - Really BASIC stuff!

2001-03-06 Thread Nick Norton

Just put the following instead of a long switch and keep your file naming
conventions consistent

include("side_$page.txt");


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] session_start

2001-03-06 Thread Nick Norton

To assign session variables you need to reference them by name:
$username = "new_user";


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Opening Remote Files

2001-03-27 Thread Nick Norton

Does anyone know of a method to read a remote password protected file
without actually downloading it locally and then reading?

- Nick


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]