Re[2]: [PHP] dynamic -> static

2003-10-08 Thread Veniamin Goldin
Hello Mike, Thank you for your help, As I wrote already this issue is mainly because of search engines incompatibility with dynamic content sites (to be more exact - with urls containing get parameters, in my case ex. index.shtml?lang=en&menu_id=23) Which of your described solution would you sug

Re: [PHP] convert "\" to "/"

2003-10-08 Thread Veniamin Goldin
"\" - is an escape symbol, so you should write it twice in order to escape it self. str_replace ("\\","/",$var) "Diana Castillo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am receiving some data in which the sender has mistakenly sent urls with > "\" instead of "/" to separate

Re: [PHP] dynamic -> static

2003-10-08 Thread Veniamin Goldin
The problem is actually that search engines poorly indexes dynamic content sites, so I looking for solution to produce static pages with static links from all dynamic content being formed on the fly. - Original Message - From: "Ryan Thompson" <[EMAIL PROTECTED]> To:

[PHP] dynamic -> static

2003-10-07 Thread Veniamin Goldin
Dear All, Does anybody have any solutions, which makes possible to produce static pages of all dynamic cms once a day and can be easily integrated into already made site? Thank you.

Re: [PHP] session control query

2003-10-03 Thread Veniamin Goldin
Hi, session_start(); must be a very first line of script. Before any html output. Regards, Veniamin SS> Hi there, SS> I'm currently working on a user login script. I'm using session SS> variables. Everything seems to be working fine but I continually get the SS> following warnin

Re: [PHP] captcha WAS Please visit my php program

2003-09-30 Thread Veniamin Goldin
Do somebody has any snipet for this stuff ? - Original Message - From: "Ryan A" <[EMAIL PROTECTED]> To: "Chris W. Parker" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, September 30, 2003 1:46 AM Subject: Re: [PHP] captcha WAS Please visit my php program > Hey, > > /* > Exact

Re: [PHP] TABLE COLUMNS

2003-06-02 Thread Veniamin Goldin
probably something like: echo ""; $rs=mysql_query("select * from blabla;",$conn); while($row=mysql_fetch_row($rs)) { echo ""; echo "".$row[0].""; echo "".$row[1].""; echo "".$row[2].""; echo "".$row[3].""; echo ""; } echo ""; R> I'm querying a database then printing the result

Re[2]: [PHP] SHA-1 + RSA + base64

2003-03-27 Thread Veniamin Goldin
gt; base64_encode but it could also be data ->> sha1 data ->> rsa data ->> base64 JS> The latter is not secure because you are using base64 which is not even JS> trivial to decode. JS> Jason JS> Veniamin Goldin wrote: >>Hi all, >> >> >>I need

[PHP] SHA-1 + RSA + base64

2003-03-26 Thread Veniamin Goldin
Hi all, I need some help, I have a request to encode string with SHA-1, then with RSA and at the end with base64, There no problems with SHA-1 and base64, but i can't find any functions to encode using RSA. md5 seems to be not what I'm looking for. I heard also, that there should be special

Re: [PHP] Include() in included file

2003-03-16 Thread Veniamin Goldin
Hi Hubert, Check if there display_errors in your php.ini is set to Yes, and also take a look at your apache error log when you execute this page, probably you will see an error there. Best regards, Veniamin Goldin Interlogics, Inc. Вы писали 15 марта 2003 г., 12:34:35: HK> Hello all! HK&

[PHP] create keywords meta tag dynamically

2003-03-16 Thread Veniamin Goldin
hi, Does someone have solution how to index page and dynamically create keywords for "keywords" meta tag ? Based on full page content, not only on title. Thanks ! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sybase Result Paging

2001-10-01 Thread Veniamin Goldin
Hi all ! Does anybody has a solution of paging result for Sybase + PHP ? Like <> Thanks. -- 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] Locale Month Name

2001-08-30 Thread Veniamin Goldin
Hello ! Please help me, How to get Month name according to server's locale setings ? I tryed to use: setlocale("LC_ALL", "LT"); $month = strftime("%B", mktime(0,0,0,$m,1,$y)); But I get message: Warning: Passing locale category name as string is deprecated. Use the LC_* -constants instead.

[PHP] Move recordset to first record problems...

2001-08-22 Thread Veniamin Goldin
Please help me ! How to move recordset to the first record (i use to connect to database using ODBC). Thank you ! -- 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 administra

[PHP] Include

2001-08-07 Thread Veniamin Goldin
help me please ! I try to use include() and require() an that what i get: The path is 100% good. Warning: Failed opening '../inc/menu.inc' for inclusion (include_path='') in -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

[PHP] function into string

2001-08-07 Thread Veniamin Goldin
Sorry for the dummies question, but how do I insert into string like: echo "balalala" how to insert function in the midle like : echo "balalala [trim(odbc_result($result_id,3))] aasasasas" Thank you. > - Original Message - > From: "René Moonen" <[EMAIL PROTECTED]> > To: <[EMAIL PROT

[PHP] Split array

2001-08-07 Thread Veniamin Goldin
hello ! Please help me. How do I split array so, that I'll get string variable with "," delimeter of each array value ? Thank you! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li