Re: [PHP-WIN] Cookies!

2004-10-09 Thread Sudeep Zamudra
Hi James, Php on IIS or PWS are known to have problems with session and cookie. Try using session instead of cookie. That's the safest way. Also anyone can disable cookies on the client side where by your login authentcation may fail. So best way is use session instead of cookie.

Re: [PHP-WIN] Newbie working with PHP 5.0, IIS, Win2000

2004-08-18 Thread Sudeep Zamudra
Hi chuck, As far as the "Notices" are concerned you can disable it from php.ini configuration file. Regards, SuDeEp Chuck <[EMAIL PROTECTED]> wrote: Hello everyone. Hopefully someone can help me with this. I was able to install PHP successfully. I tried a sample script and it worked fine thr

Re: [PHP-WIN] Setting redirect after HTTP upload

2004-08-04 Thread Sudeep Zamudra
Hi, You cannot use header function if u want to output anything on that page. If you still want to redirect the page. Use at the top of the page. .SuDeEp. Mikey <[EMAIL PROTECTED]> wrote: Hi NG, Was wondering if anyone knew how why my code would fail to re-direct to another page an

Re: [PHP-WIN] check boxes... set the VALUE or just echo CHECKED????

2004-07-05 Thread Sudeep Zamudra
what's wrong with this: >Ten Twenty SuDeEp.. "Leo G. Divinagracia III" <[EMAIL PROTECTED]> wrote: i'm thinking of just adding the CHECKED word to the ECHO'ed HTML statement instead of dealing with the VALUE. what's the "proper" vs the "easy" way? thanks... i googled a fe

Re: [PHP-WIN] cannot add 'header' information

2004-06-21 Thread Sudeep Zamudra
Hi there, I fully agree with what Svensson has said. You must have any HTML output somewhere in the page. You can override this by giving a at the top of the page. ...SuDeEp... Amit Arora <[EMAIL PROTECTED]> wrote: Also, make sure that there is not empty space or empty lines before the fir

Re: [PHP-WIN] ASP to PHP converter?

2004-06-16 Thread Sudeep Zamudra
Hi Erik, Check this out. http://asp2php.naken.cc/ I don't know whether it is reliable or not. But i guess it's free. ...SuDeEp... [EMAIL PROTECTED] wrote: Does anyone know of reasonably good and reliable (and preferably free) ASP to PHP converter? Erik -- PHP Windows Mailing List (http:/

Re: [PHP-WIN] Opening Search results in a New Window

2004-06-10 Thread Sudeep Zamudra
Hi Raj, I would suggest u to use javascript.window.open() function. There u can specify the parameters of the new window to be open. ...SuDeEp... Raj Gopal <[EMAIL PROTECTED]> wrote: Hi All, I have a Form with a Search button and when the user types the Search word and clicks on Search,

RE: [PHP-WIN] Transfering database

2004-05-27 Thread Sudeep Zamudra
M: popen("mysql -u username -p database < C:\path\to\your\dump\file.sql"); shell_exec("mysql -u username -p database < C:\path\to\your\dump\file.sql"); system("mysql -u username -p database < C:\path\to\your\dump\file.sql"); etc, etc, etc... ---

Re: [PHP-WIN] Transfering database

2004-05-27 Thread Sudeep Zamudra
Thanx for your suggestions. But i am looking for a php script by which i can do this not from the mysql shell command line. If any has it . Please suggest it to me. Thanx Jeroen Serpieters <[EMAIL PROTECTED]> wrote: On Wed, 26 May 2004, Sudeep Zamudra wrote: > > I have dump

[PHP-WIN] Transfering database

2004-05-26 Thread Sudeep Zamudra
Hi everyone, I have dumped my entire database into files with extension '.sql' (separate file for each table). Now please tell me any function or statements if any to tranfer the contents of the file(i.e table structure and table contents) into a new database which is on another database serve

Re: [PHP-WIN] mysql rollback

2004-05-26 Thread Sudeep Zamudra
Could u just give me what should be the statement to rollback a database for eg "abc" [EMAIL PROTECTED] wrote:what verion of mysql do you have? Early version of MySQL didn't include the rollback functionality. Do you not have any mysql_dumps of the databases and/or tables? (Its vital that you ba

[PHP-WIN] mysql rollback

2004-05-26 Thread Sudeep Zamudra
Help please, i lost all of my database tables all of a sudden. It was in for example a database called "abc". Can i retrieve the entile table and it's comtents by any means. Thru any Rollback statement. Help please - Do you Yahoo!? Friends.

[PHP-WIN] database migration... URGENT

2004-05-26 Thread Sudeep Zamudra
Hi evryone, I need help...I have mysql database dump files that need to be dumped into a new database server. There... i dont find any application such as phpmyadmin OR mysqlAdmin and that makes my job difficult. So please tell me how to migrate my current database to the new one. Any s

[PHP-WIN] database migration... URGENT

2004-05-26 Thread Sudeep Zamudra
Hi evryone, I need help...I have mysql database dump files that need to be dumped into a new database server. There... i dont find any application such as phpmyadmin OR mysqlAdmin and that makes my job difficult. So please tell me how to migrate my current database to the new one. Any s

[PHP-WIN] databse migration... URGENT

2004-05-26 Thread Sudeep Zamudra
Hi evryone, I need help...I have mysql database dump files that need to be dumped into a new database server. There... i dont find any application such as phpmyadmin OR mysqlAdmin and that makes my job difficult. So please tell me how to migrate my current database to the new one. Any s

[PHP-WIN] Date format

2004-05-13 Thread Sudeep Zamudra
Hi everyone, I want to convert a date 1965-12-25 into the format: 25-Dec-1965. When i use mktime it works fine for any date after the year 1970. It doesn't work for any date before 1970. Help please. Is there any function that shows the date in the above required format.