[PHP] Spellchecking using MS Office spellchecker

2004-08-02 Thread George E. Papadakis
Hi all, Do you know if there is a way, class or anything else that could be used in order to use Microsoft's spell checker with php to spell check text? Aspell and Pspell are good alternatives, yet not as good as expected. Thanks in advance, GP -- PHP General Mailing List (http://www.php.net/) T

[PHP] Strip_Tags @ php 4.3

2003-01-27 Thread George E. Papadakis
Hello, Has anyone noticed strange behaviour in strap_tags @ php 4.3? We did upgrade to the latest snap yet the problem remains. For some reason strip_tags acts weird.. -- georgep -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] a regular expression problem - split text

2003-01-25 Thread George E. Papadakis
If I got this right : preg_match_all ("#\!.*?>(.*?)<#si",$string,$match); You will have an array ($match[1]) with all your subs in there. -- georgep - Original Message - From: "Juan Pablo Aqueveque" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 20, 2003 9:11 PM Subje

Re: [PHP] Word Count

2003-01-25 Thread George E. Papadakis
$wordsCount = str_word_count($string); -- georgep - Original Message - From: "Maxim Maletsky" <[EMAIL PROTECTED]> To: "Craig" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 11:26 PM Subject: Re: [PHP] Word Count > words, for a programming language, are no

Re: [PHP] Minor email problem

2003-01-25 Thread George E. Papadakis
Take a look at the standard php mail function . You can set most of the available mail headers inluding from/to ones. That would do it. --georgep - Original Message - From: "Denis L. Menezes" <[EMAIL PROTECTED]> To: "PHP general list" <[EMAIL PROTECTED]> Sent: Friday, January 24, 2003 1:

Re: [PHP] GD jpg thumbnail - ugly discollored

2003-01-25 Thread George E. Papadakis
Use ImageMagick found @ http://www.imagemagick.org . It is all you need to handle images. Aside the binary external program take a look at this too : http://magick.communityconnect.com/ best of luck, --georgep - Original Message - From: "Victor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED

[PHP] Output problem

2002-08-20 Thread George E. Papadakis
Hi, After unsuccessful try to install apache2.0.4 with php I went back to apache1.3 and the same php config I had before. Yet for some reason php is not working the way its supposed to. The header function wont do a thing and no syntax errors or warnings are shown . I guess it has to do something

[PHP] Apache 2.0.40 and php as module

2002-08-19 Thread George E. Papadakis
Hi , I am trying to install Apache 2.0.40 with the latest php build as a module (windows xp) yet it just wont work. Though I tried all the tricks and possible scenarios no luck. Does anyone have anyidea why I am getthing this frustrating "Cannot load D:/Apache/php/sapi/php4apache2.dll into serve

[PHP] PHP/Apache/Windows question

2002-03-10 Thread George E. Papadakis
Hello , I am using PHP 4.x on Windows/Apache 1.3.x. Using the same confing on Linux , I can get something like index.php/something/anotherSomething/blah blah. Trying to do this @ windows just failes. I think it has to do with Apache look back feature which for some reason is not working on Windo

[PHP] Referer Question

2001-12-05 Thread George E. Papadakis
ng. I could do it using some javascript and pass it to the php but that's not really acceptable. Thanks in advance, George E. Papadakis Project Manager Phaistos Networks S.A - http://www.phaistosnetworks.gr [EMAIL PROTECTED] T: +30 892 24450 F: +30 892 23206 - A DOL Digital Company -- P

[PHP] Apache / PHP Question

2001-11-04 Thread George E. Papadakis
Hello, In my lnx server I can do index.php/var1/var2/var3 I try the same exact thing in windows (using the same config (Apache/php) ) and it gives me internal server error. Any ideas? Thanks -- phaistonian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

[PHP] PHP/Mysql error handling

2001-11-04 Thread George E. Papadakis
Hi, Is there any way to make php notify me of any errors through email? I know it may sounds funny, but imagine having this huge site and u just want it to run smoothly but u juct cant check it all the time . If there was a way that php would notify u for a an error on a specific page/line that w

Re: [PHP] Shell or http?

2001-08-26 Thread George E. Papadakis
that can help me identify whether the script was sgi or web running. Thanks again. --georgep - Original Message - From: "Chris Lambert" <[EMAIL PROTECTED]> To: "George E. Papadakis" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, August 27, 20

[PHP] Shell or http?

2001-08-26 Thread George E. Papadakis
Hi, Is there any way to identify if a php script is running through a shell or web? Thanks in advance. -- GeorgeP -- 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,

Re: [PHP] Re: Just like to know

2001-07-18 Thread George E. Papadakis
Hello, I ame facing a cookies problem with with Internet Explorer I issue the following command to set the cookie: setcookie( $cookie_name, $cookie_value, time()+15768, "/", ".mydomain.gr", 0 ) The page that sends the cookie is in an IFRAME inside the main browser's window. The domain in the

Re: [PHP] select the most repeated value in a field

2001-05-24 Thread George E. Papadakis
select result,count(*) as cnt from table group by result order by cnt desc ; - Original Message - From: "Jacky" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 24, 2001 10:02 PM Subject: [PHP] select the most repeated value in a field Hi people How do i query to select

Re: [PHP] outputting lines from file(file.php)

2001-05-23 Thread George E. Papadakis
hm.. Is include () or require () what you are talking about or I am wrong? -- GP > I have read in the lines from a php file into a $buff. > > Each line is set and the total corresponds to the number of lines in the > file. > > But trying to ouput the lines results in blank lines. > > do I ha

Re: [PHP] About Commit..

2001-05-23 Thread George E. Papadakis
Use Oracle if you want transactions. Yet, it's going to be slow. Mysql is said to support transactions soon. - Original Message - From: "Hassan Arteaga" <[EMAIL PROTECTED]> To: "Php (E-mail)" <[EMAIL PROTECTED]> Sent: Wednesday, May 23, 2001 4:55 PM Subject: [PHP] About Commit.. > Hi al

Re: [PHP] Max execution time for exec()?

2001-05-22 Thread George E. Papadakis
Php has max exec time limit. If you increase that limit you wont face any problems with the functions/calls made by php including exec or system. :: set_time_limit (secs) > Haven't seen anything to support this but it seems to me that exec() and > such has maximum execution times. Can anyone ve

Re: [PHP] generating thumbnails

2001-05-21 Thread George E. Papadakis
Find a good command line programm that does resing and use exec or system to do the thumbnailing Fopen >> fwrite >> exec. If you are on linux I suggest using NetPBM. - Original Message - From: "Samuel Lüscher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 3:21 P

Re: [PHP] include() in a file incuded()

2001-05-20 Thread George E. Papadakis
Replace with > Variable $open is passed to the included file automatically. > Hi! > > I've been blocked by this tiny problem... > > I have a main.php file: > > $frames = true; > $open = "http://myserver.com/info.html";; > if ($frames) > { > include ("frameset.php"); > } > ?> > > The fram

[PHP] RegEx Question

2001-05-20 Thread George E. Papadakis
Hi, I have an ereg question::. $data = a big string , while (ereg ("testing([^;]*);blah(.*)",$data,$args)) { $this = $args[1]; $data = $args[2]; } What I wanna do ,obviously, is to get all the strings between 'testng' and 'blah' in an array. This will do it, yet when it wont work when sp