RE: [PHP] Dynamic refresh dropdown list

2007-07-17 Thread Sichta, Daniel
Look for AJAX ! DS -Original Message- From: C.R.Vegelin [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 17, 2007 12:57 PM To: [EMAIL PROTECTED] Subject: [PHP] Dynamic refresh dropdown list I have a selection form with multiple dropdown lists, let's say A, B and C. If the dropdown lis

RE: [PHP] PHP/Mysql: Making binary field available for download - extra browser window ?

2006-06-01 Thread Sichta, Daniel
Hi, In this case I usually creating Iframe with zero with and zero height and using your "header" code in the iframe sorce file. DS -Original Message- From: Matthew Pegg [mailto:[EMAIL PROTECTED] Sent: Friday, June 02, 2006 7:59 AM To: php-general@lists.php.net Subject: [PHP] PHP/Mysql

RE: [PHP] session

2006-04-27 Thread Sichta, Daniel
Solved !!! THX everybody !! Problem was in php.ini file session section DS -Original Message- From: Ford, Mike [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 2:18 PM To: php-general@lists.php.net Subject: RE: [PHP] session On 26 April 2006 15:02, chris smith wrote: >

RE: [PHP] session

2006-04-26 Thread Sichta, Daniel
No frames in your browser! And for example in menu.php I'm using require_once("include/init.inc"); DS -Original Message- From: chris smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 4:10 PM To: Sichta, Daniel Cc: php-general@lists.p

RE: [PHP] session

2006-04-26 Thread Sichta, Daniel
PM To: Sichta, Daniel Cc: php-general@lists.php.net Subject: Re: [PHP] session On 4/26/06, Sichta, Daniel <[EMAIL PROTECTED]> wrote: > > -Original Message- > From: chris smith [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 26, 2006 2:18 PM > To: Sichta, Daniel >

[PHP] session

2006-04-26 Thread Sichta, Daniel
Hi there !! I have web app which using frames. After session timeout my session is killed. The problem is that session is killed even when I doing requests to the server. I know why (session is "chain" to the frameset page) but what's the solution for this? I have to use frames !! Don't ask why

[PHP] preg_slipt

2005-11-29 Thread Sichta Daniel
Hi all !!! I have string like this "1234567890" I need to split this into array like this a[0] = "12" a[1] = "34" a[2] = "56" a[3] = "78" a[4] = "90" I know that for this is preg_split, but I don't know the string patern for split. Thank you in advance !! Dan

[PHP] PHP and DataSet from C# (VB)

2004-02-03 Thread Sichta Daniel
Hi there !! Is there a way how can PHP can handle data (get data ) from DataSet generated from dll buld in C# ? I have dll which is whole database layer and I need to retrieve data in php. THX Ing. Daniel Šichta Siemens Program and System Engineering s.r.o. EIF AS TIS Bytčická 2 01001 Žilina S

RE: [PHP] passwd protected page

2003-06-25 Thread Sichta Daniel
Hi, You can validate user on login page and sets the flag in database table. Then on each page you have to check that flag again DS -Original Message- From: Bibhas Kumar Samanta [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 8:52 AM To: [EMAIL PROTECTED] Subject: [PHP] pass

[PHP] downloading XML file

2003-06-03 Thread Sichta Daniel
Hi, cfg: php 4.2.3, IIS5.1 I have generated link (from MySQL database) on my web sile, which suppose to allow user to dowload xml file. How can I do this because when I'm just adding name of the file to the href then it will be open in Browser window. How can I make the browser open the "oepn or

RE: [PHP] Validating user input

2003-06-03 Thread Sichta Daniel
Another way is to do it on client side (javascript) DS -Original Message- From: Shaun [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 11:21 AM To: [EMAIL PROTECTED] Subject: [PHP] Validating user input Hi, I am creating a timesheet application, how can I make sure that a user ha

RE: [PHP] How to question.

2003-05-30 Thread Sichta Daniel
Hi, You can build some class which will hold some data and then you just need to sets all class variables and register instance of this class to the session variable. DS -Original Message- From: Ryan A [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2003 11:37 AM To: [EMAIL PROTECTED] Su

RE: [PHP] Variables don't pass... *sniff*

2003-05-28 Thread Sichta Daniel
I think, you can write some wrapper arround this and in some config file just add one variable which will tell the script about PHP version. so You can than use something like this: switch (VERSION) { case 4.0: .. } DS -Original Message- From: Jay Blanc