Re: [PHP] PHP4 and PHP5 at one machine

2003-07-09 Thread Milan Reznicek
there the newer one the one with PHP4 won't start. That's my problem. Do you know how to solve this? Milan -- -- Milan Reznicek Software Developer e-mail: [EMAIL PROTECTED] Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tuesday, July

[PHP] PHP4 and PHP5 at one machine

2003-07-08 Thread Milan Reznicek
Hi, is there any posibility to run PHP4 and PHP5 at one machine, with two Apache servers running at the same time. Windows 2000 SP3 Apache 1.3.27/PHP 4.3.0 Apache 2.0.46/PHP 5.0.0b1 Thank You for Answers Milan -- -- Milan Reznicek Software Developer e-mail

[PHP] Browscap

2003-07-02 Thread Milan Reznicek
Hi everybody, I'm trying to get_browser() function, but everytime I get from my apache could not open browscap.ini for reading. Does someone know how to correct it, or is there any other way how to determine users browser type and OS without using browscap? Thanks Milan -- PHP General

Re: [PHP] ?xml version=1.0 encoding=UTF-8

2003-06-23 Thread Milan Reznicek
It may happen because your HTML is not written in an XML standard. - Original Message - From: Doug Essinger-Hileman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 23, 2003 7:22 PM Subject: [PHP] ?xml version=1.0 encoding=UTF-8 When I include ?xml version=1.0

Re: [PHP] Query mysql highest id number

2003-06-22 Thread Milan Reznicek
Try this SELECT * FROM table ORDER BY id DESC LIMIT 1 Milan - Original Message - From: Chris Schoeman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 22, 2003 12:05 PM Subject: [PHP] Query mysql highest id number I want to make a query in a

Re: [PHP] search-and-highlight issue (byt tes)

2003-06-21 Thread Milan Reznicek
And what about highlighting the whole word which contains the searched term. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 21, 2003 12:31 PM Subject: [PHP] search-and-highlight issue (byt tes) hello! i have a problem with a

Re: [PHP] Cookies- peanut butter or chocolate??

2003-06-19 Thread Milan Reznicek
Hi, this is an extract from setcookie documentation - how to handle a cookie array. Is this what you were looking for?? You may also set array cookies by using array notation in the cookie name. This has the effect of setting as many cookies as you have array elements, but when the

[PHP] Users authentication with Apache and PHP on Novell

2002-09-21 Thread Milan Reznicek
Hi Everybody, I have my Apache 1.3.26 with PHP 4.2.2 running on WinNT 4.0 and need to authenticate users to have access to some web pages. The computer with apache is a part of Novell NetWare Network and I need to that only users which are from this network have access to the web

Re: [PHP] HTML - iframe

2002-08-19 Thread Milan Reznicek
You may try, to make the IFRAME invisible. I think it is done with this: document.all.name.visibility = hidden; And when the page is loaded then change it to document.all.name.visibility = visible; Not sure if it will be working but