[PHP-WIN] Need help with session problem

2003-11-27 Thread Alan Leff
I'm running php 4.2.3 and apache 1.3.27 on a Windows 2000 server. If the server clock is say a week older than the client computers, the session functions stop working. Does anyone know what's going on here? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

Re: [PHP-WIN] i need help

2003-11-27 Thread Hasan Barýþ Karayel
thanks... it works... From: Donatas <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] i need help Date: Thu, 27 Nov 2003 18:28:26 +0200 It doesn't work coz you need to do it this way: echo("Your username = ". *$_GET ['username']*.""); echo("Your password = ". *$_GET ['password']*.""

RE: [PHP-WIN] i need help

2003-11-27 Thread Disko_kex
Try use $HTTP_GET_VARS["password"] or $_GET["password"] > -Original Message- > From: Hasan Barýþ Karayel [mailto:[EMAIL PROTECTED] > Sent: den 27 november 2003 17:26 > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] i need help > > Hi > i am new in PHP... > i made very a simple code but it d

RE: [PHP-WIN] i need help

2003-11-27 Thread Mike Brum
Do you have register_globals on? If not, try this: Your username = " . $HTTP_GET_VARS['username'] . ""; echo "Your password = " . $HTTP_GET_VARS['password'] . ""; ?> Regards Mike -Original Message- From: Hasan Barýþ Karayel [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2003 1

[PHP-WIN] i need help

2003-11-27 Thread Hasan Barýþ Karayel
Hi, i am new in PHP... i made very a simple code but it did not work properly... this is my code: ::WaterBike Team Istanbul - ITU:: Show my password echo("Your username = ". $username.""); echo("Your password = ". $password.""); ?> when i click the link, i expect this output: Show my passw

Re: [PHP-WIN] i need help

2003-11-27 Thread Donatas
Disregard those stars... I guess this is a bug in my mail app or php-win mailing list, it should have been bold instead. Donatas wrote: It doesn't work coz you need to do it this way: echo("Your username = ". *$_GET ['username']*.""); echo("Your password = ". *$_GET ['password']*.""); you use $_

[PHP-WIN] i need help

2003-11-27 Thread Hasan Barýþ Karayel
Hi, i am new in PHP... i made very a simple code but it did not work properly... this is my code: ::WaterBike Team Istanbul - ITU:: Show my password echo("Your username = ". $username.""); echo("Your password = ". $password.""); ?> when i click the link, i expect this output: Show my passw

Re: [PHP-WIN] i need help

2003-11-27 Thread Donatas
It doesn't work coz you need to do it this way: echo("Your username = ". *$_GET ['username']*.""); echo("Your password = ". *$_GET ['password']*.""); you use $_GET ['']; superglobal array for values passed via link or form where type is get or $_POST ['']; if you get info from a form via post met

[PHP-WIN] i need help

2003-11-27 Thread Hasan Barýþ Karayel
Hi i am new in PHP... i made very a simple code but it did not work properly... this is my code: ::WaterBike Team Istanbul - ITU:: Show my password echo("Your username = ". $username.""); echo("Your password = ". $password.""); ?> when i click the link, i expect this output: Show my passwo

Re: [PHP-WIN] Code to splite page

2003-11-27 Thread Luis Moreira
Not sure I understand what you want. It seems simple programming, though. Be a little more specific... Luis - Original Message - From: "Lawrence" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 27, 2003 1:43 PM Subject: [PHP-WIN] Code to splite page > I need the co

Re: [PHP-WIN] Code to splite page

2003-11-27 Thread Ignatius Reilly
You may profitably investigate the PEAR HTML_Pager class. http://pear.php.net/manual/en/package.html.pager.intro.php Ignatius _ - Original Message - From: "Lawrence" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 27, 2003 14:43 Subject: [PHP-W

RE: [PHP-WIN] Code to splite page

2003-11-27 Thread Croskerry, Dan
Hi Lawrence, I'm assuming you are pulling these products from a mysql db. If so you can use the LIMIT clause. $sql = "SELECT * FROM table LIMIT 1, 10"; //where these integers represent row_count, OFFSET Read more here http://www.mysql.com/doc/en/SELECT.html You can substitute a variable for the

Re: [PHP-WIN] Redirection

2003-11-27 Thread Donatas
Another solution would be to use output buffering. read the manual on ob_start (); Cheers, Donny Stuart wrote: PETCOL wrote: function browserRedirect() { var ns4 = document.layers; var ns6 = document.getElementById && !document.all; var ie4 = document.all;

[PHP-WIN] Code to splite page

2003-11-27 Thread Lawrence
I need the code to splite page , I have 50 products , I want splite 10 products per page , if anyone has that , please show me , thank you -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-windows Digest 27 Nov 2003 10:08:22 -0000 Issue 2018

2003-11-27 Thread php-windows-digest-help
php-windows Digest 27 Nov 2003 10:08:22 - Issue 2018 Topics (messages 22212 through 2): Re: I keep getting parse error, unexpected T_VARIABLE 22212 by: Croskerry, Dan Re: DFD for website 22213 by: Trystano.aol.com 22214 by: Croskerry, Dan 22215 by: Vail,

Re: [PHP-WIN] Redirection

2003-11-27 Thread Stuart
PETCOL wrote: function browserRedirect() { var ns4 = document.layers; var ns6 = document.getElementById && !document.all; var ie4 = document.all;
if(ns4) URLStr = "http://www.php.net";;
else if(ns6) URLS