Re: [PHP] regular expression to find body text in mobile

2008-06-12 Thread Yui Hiroaki
. Regards, Yui 2008/6/12 Nitsan Bin-Nun <[EMAIL PROTECTED]>: > I'm confused. > PHP runs on the server, so it shouldn't be a problem at all to run regex > search/reaplce/match/whatever on mobile phone internet, maybe you are > talking on JS regex? > > Nitsan > &

Re: [PHP] regular expression to find body text in mobile

2008-06-11 Thread Yui Hiroaki
Ooops! It it mobile mobile phone! Regards, Yui 2008/6/11 Richard Heyes <[EMAIL PROTECTED]>: >> Doese any know how to find text in mobile using Regular Expression? >> I am using php. > > Mobile what? > > -- > Richard Heyes > >Employ me: > http://www.phpguru.org/cv > > +

[PHP] regular expression to find body text in mobile

2008-06-11 Thread Yui Hiroaki
Doese any know how to find text in mobile using Regular Expression? I am using php. Regards, Yui -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
reach the my goal, I thought. But google_info.php must execute mail() function. Or setting.php must have $googlemapkey. Thank you for a lot. Regards, Yui 2008/6/5 Boyd, Todd M. <[EMAIL PROTECTED]>: >> -Original Message----- >> From: Yui Hiroaki [mailto:[EMAIL PROTECTED]

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
Uhmm! It is sure that function can call from other file. But it is NOT EXECUTE mail() function. How mail function be execute! Please do more advice. You may tire of this mail. BEST REGARDS, Yui 2008/6/5 Boyd, Todd M. <[EMAIL PROTECTED]>: >> -Original Message----- >>

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
Original Message----- >> From: Yui Hiroaki [mailto:[EMAIL PROTECTED] >> Sent: Wednesday, June 04, 2008 10:03 AM >> To: Thijs Lensselink >> Cc: php-general@lists.php.net >> Subject: Re: [PHP] Avoid object twice >> >> NO! >> That is what I do not want! >

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
gards, Yui 2008/6/4 Thijs Lensselink <[EMAIL PROTECTED]>: > Quoting Yui Hiroaki <[EMAIL PROTECTED]>: > >> My problem is that I would like to share the parameter. >> For instance, goolge map key. >> >> There are actually two files. >> >>

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
My problem is that I would like to share the parameter. For instance, goolge map key. There are actually two files. example, main.php Above is part of code; I will excute main.php program. then other.php run But when other.php run, other.php requre $googlemapkey. Of couse,

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
I knew it . But "Hello" and "Good" is different file. I would like to get "Good" from b.php. Please tell me goo advice. Yui 2008/6/4 Boyd, Todd M. <[EMAIL PROTECTED]>: >> Thank you for your advice me! >> >> -My.php--- >> > >> Class My{ >>private $word; >>function

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
Thank you for your good advice. I excute c.php I did not get "Good" from b.php. How can I get "Good" from b.php. Regards, Yui 2008/6/4 Thijs Lensselink <[EMAIL PROTECTED]>: > Quoting Yui Hiroaki <[EMAIL PROTECTED]>: > >> Thank you for you

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
Thank you for your advice me! -My.php--- word=$getword; } public function buff(){ mail("[EMAIL PROTECTED]","test","test"); } } ?> -- --b.php buff(); ?>

Re: [PHP] Avoid object twice

2008-06-04 Thread Yui Hiroaki
Thank you for your advice me! -My.php--- word=$getword; } public function buff(){ mail("[EMAIL PROTECTED]","test","test"); } } ?> -- --b.php buff(); ?>

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
I need The problem is how to get parameter from c.php to b.php. Please do help me! Regards, Yui 2008/6/4 Jim Lucas <[EMAIL PROTECTED]>: > Yui Hiroaki wrote: >> >> The code is blelow; >> -b.php >> > function __autoload($cla

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
Thank you for everyone who helps me! I got a message what I want. Thank you! Yui 2008/6/4 Jim Lucas <[EMAIL PROTECTED]>: > Yui Hiroaki wrote: >> >> The code is blelow; >> -b.php >> > function __autoload($class_name) {

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
twice I would get Hello(when excute My.php) Good(when excute from b.php) Please do help me! Regards, Yui 2008/6/3 Thijs Lensselink <[EMAIL PROTECTED]>: > Quoting Yui Hiroaki <[EMAIL PROTECTED]>: > >> Please look at my.php >> >> my.php load &

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
Please look at my.php my.php load $obj=new My("Hello"); $obj->buff(); so, if a.php load, it absolutely got "hello" in load b.php Regards, Yui 2008/6/3 Thijs Lensselink <[EMAIL PROTECTED]>: > Quoting Yui Hiroaki <[EMAIL PROTECTED]>: > >> Thank y

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
gt; > --My.php-- > > Class My{ >private $word; >function __construct($getword){ >$this->word=$getword; >} >public function buff(){ >echo $this->word.""; >} > } > > > /James Dempster > &g

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
gt; > --My.php-- > > Class My{ >private $word; >function __construct($getword){ >$this->word=$getword; >} >public function buff(){ >echo $this->word.""; >} > } > > > /James Dempster > &g

Re: [PHP] Avoid object twice

2008-06-03 Thread Yui Hiroaki
Regards, Yui 2008/6/3 James Dempster <[EMAIL PROTECTED]>: > I don't see how it's possible for you to get "Hello" after "Good", when the > file that cause's "Hello" is required to do "Good" > >

Re: [PHP] Avoid object twice

2008-06-02 Thread Yui Hiroaki
ello"); > $obj->buff(); > > I think this will achieve what you want. > > -Original Message- > From: Yui Hiroaki [mailto:[EMAIL PROTECTED] > Sent: Monday, June 02, 2008 11:01 PM > To: php-general@lists.php.net > Subject: [PHP] Avoid object twice > >

[PHP] Avoid object twice

2008-06-02 Thread Yui Hiroaki
Please take a look at code. a.php $obj=new my("Hello"); $obj->buff(); Class my{ private $word; function __construct($getword){ $this->word=$getword; } public function buff(){ echo $this->word.""; } -- -b.php-

Re: [PHP] Class Load twice

2008-05-31 Thread Yui Hiroaki
Yes, Second file is load.php(NOT MyClass.php ) If you add comment Mail() function ,in MyClass.php, I can not get any email! I just want to get email from only MyClass.php. Regards, Yui 2008/5/31 Ludovic André <[EMAIL PROTECTED]>: > Hi, >> >> I just do not want to load mail() when load.php is l

[PHP] Class Load twice

2008-05-31 Thread Yui Hiroaki
hi! Please take look at my code; I have two files. one of the two file is wrtten mail() function. when load.php is loaded, mail(), written by MyClass.php, os also loaded. I just do not want to load mail() when load.php is load. if you know how to solove it, please teach me it! *MyClass.ph

[PHP] reretrieve header from email

2008-05-20 Thread Yui Hiroaki
Does anyone knows how to retrieve Header from email? Regards, Yui -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: euro currency convert

2008-05-18 Thread Yui Hiroaki
You are right! I would like to know how to convert german currency(old) to Euro currency. Regards, Yui Japanese php deveper 2008/5/18 M. Sokolewicz <[EMAIL PROTECTED]>: > Yui Hiroaki wrote: >> >> hi! >> >> Does anyone know how to convert euro ? >> >&g

[PHP] euro currency convert

2008-05-17 Thread Yui Hiroaki
hi! Does anyone know how to convert euro ? For example; French to German, Italy to French currency so on. Regards, Yi\ui -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] retrieve email address

2008-05-05 Thread Yui Hiroaki
HI! I do not use PEARm then find email address from email. Dose anyone know how to get it?? It does noe blow; ereg("^From: \s+ .*", $data) ; Regards, yui 2008/5/5 Richard Heyes <[EMAIL PROTECTED]>: > > > > I would like to retrieve email address from email with regular expression. > > > > -

[PHP] retrieve email address

2008-05-04 Thread Yui Hiroaki
I would like to retrieve email address from email with regular expression. --email . . . From: [EMAIL PROTECTED] . . . -- if anybody know how to do it, please send me email. Regards, Yui -- PHP General Mailing List (http://www.php.net/) To unsubscri

[PHP] convert unix time to Gregorian

2008-04-27 Thread Yui Hiroaki
hi! I am try to change unix time to Gregorian. I successfully convert unix time to Gregorian. But Gregorian time is now showing hour and second and more detail time. "; $julius=unixtojd($unix_timestamp); $Gregorian=jdtogregorian("$julius"); echo "$Gregorian"; ?> Above code showing the result onl

Re: [PHP] CAN NOT read qmail

2008-04-17 Thread Yui Hiroaki
Thank you! the perssion is 600 even when I try to change permission. This mail will return 600 soon. Regards, yui 2008/4/18, Jay Blanchard <[EMAIL PROTECTED]>: > [snip] > > I try your code; > > It is great. > But I get "faile". > > [/snip] > > If you get a failure then you might not have perm

Re: [PHP] CAN NOT read qmail

2008-04-17 Thread Yui Hiroaki
I try your code; It is great. But I get "faile". It means I can not open the file, which is from qmail. It may be different format of qmail I get below from code failed for 1208434346177.9690.domain.com code--- "; } }else{ die("fopen failed for $

Re: [PHP] CAN NOT read qmail

2008-04-17 Thread Yui Hiroaki
I do not get it. I do not where code has basic mistake. I do not have any error message. When I read qmail. My browser is stopped. Regards, yui 2008/4/18, Jay Blanchard <[EMAIL PROTECTED]>: > [snip] > > > I have a question about read to qmail. > > I try to read qmail using php. But I can not >

[PHP] CAN NOT read qmail

2008-04-17 Thread Yui Hiroaki
HI! I have a question about read to qmail. I try to read qmail using php. But I can not read it. the code is below- "; } fclose($fp); - regards, Yui -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

[PHP] anaylyze email

2008-01-13 Thread Yui Hiroaki
Thank you for your response. I try to write a code. I actualy want to do; 1) some body send email to me; for example; to [EMAIL PROTECTED] from [EMAIL PROTECTED] 2)read it's email 3)return to [EMAIL PROTECTED] so I can not do this 2) I try to read pop3. I can not find any example! Regards, Y

[PHP] login and read ad email

2008-01-05 Thread Yui Hiroaki
>> You keep asking the same questions, and I keep telling you IMAP will > >> do it. > >> > >> maybe you should try it? > >> > >> On Mon, December 31, 2007 1:17 am, Yui Hiroaki wrote: > >> > Thank you! > >> > > >>

[PHP] read email

2007-12-30 Thread Yui Hiroaki
HI! I am trying to access qmail with php. Why! Because I would like to read mail who someone send an email me to qmail. If anyone knows the code, please send me the code. Regards, Yui

[PHP] question ! show binary

2001-01-30 Thread Yui Hiroaki
HI! I am using PHP in mySQL. I create table in database and insert 'binary'(*.gif). But I do not know how to use this binary using PHP and show website. Please help me. $)create table xxx (col longlob); $)insert into xxx values("image\yyy.gif"); I want to display :yyy.gif in html Th