[PHP] Re: [PHP-WEBMASTER] I have a question for a php expert....

2010-06-09 Thread Daniel Brown
On Thu, Jun 10, 2010 at 01:29, wrote: > > It amazes me that I have figured out the hardest parts to do, but I am > stumped on this and cannot get the darn thing to include properly, I would > appreciate some instruction as now I am at a loss! Clint; Send that to the PHP General list a

Re: [PHP] Question - foreach.

2010-06-09 Thread Daniel Brown
On Wed, Jun 9, 2010 at 21:49, Shreyas wrote: > PHP'ers, > > I am reading a PHP book which explains foreach and at the end says : *'When > foreach starts walking through an array, it moves the pointer to > the beginning of the array. You don’t need to reset an array before > walking through it with

Re: [PHP] Question - foreach.

2010-06-09 Thread Jim Lucas
Shreyas wrote: PHP'ers, I am reading a PHP book which explains foreach and at the end says : *'When foreach starts walking through an array, it moves the pointer to the beginning of the array. You don’t need to reset an array before walking through it with foreach.'* * * *Does this mean - * *1)

Re: [PHP] Question - foreach.

2010-06-09 Thread Adam Richardson
On Wed, Jun 9, 2010 at 9:49 PM, Shreyas wrote: > PHP'ers, > > I am reading a PHP book which explains foreach and at the end says : *'When > foreach starts walking through an array, it moves the pointer to > the beginning of the array. You don’t need to reset an array before > walking through it w

[PHP] Question - foreach.

2010-06-09 Thread Shreyas
PHP'ers, I am reading a PHP book which explains foreach and at the end says : *'When foreach starts walking through an array, it moves the pointer to the beginning of the array. You don’t need to reset an array before walking through it with foreach.'* * * *Does this mean - * *1) Before I navigate

Re: [PHP] Re: Passing large object between methods

2010-06-09 Thread Jim Lucas
mrfroasty wrote: > > //NOTHING!!!// > Well Mr. Froasty, was there a point to your email or do you always send empty emails with random files attached to them to list the list? Was their suppose to be a question along with that email? You simply forgot to add it? -- Jim Lucas A: Maybe because

[PHP] Re: Passing large object between methods

2010-06-09 Thread mrfroasty
data = "B foo"; //call a function to add extra info on $obj_A $obj = $this->addExtraInfo($obj); //debug print_r($obj); echo ""; } public function addExtraInfo($obj) { $obj->recs = "B bar"; return $obj; } } class B { pu

Re: [PHP] Finding a font.

2010-06-09 Thread Dan Joseph
On Wed, Jun 9, 2010 at 11:14 AM, tedd wrote: > > I came in late on this thread, so please forgive me if I don't hit the > mark. > > Whenever I need to find the name of a font, I use this: > > http://new.myfonts.com/WhatTheFont/ > > Wow I just tried this out... I uploaded an image, it looked

Re: [PHP] Finding a font.

2010-06-09 Thread tedd
On Monday 07 June 2010 22:22:31 Karl DeSaulniers wrote: Hi Dave, It is called "Fine Hand" I believe. Found a copy here. http://www.fonts.com/FindFonts/Detail.htm?pid=203813&/cgi-bin/ MsmGo.exe?grab_id=0&page_id=8346&query=HANDWRITING&SCOPE=Fonts Thank you Karl, how did you find it? every goog

Re: [PHP] Generic Email

2010-06-09 Thread Richard Quadling
On 9 June 2010 09:08, Amit Bobade wrote: > Hi friends, > I am new in  PHP. I want to know that how to send an email in HTML > format(i.e. with proper header, footer, etc) in PHP. >  Please suggest me with code. > > -- > Thanks and Regards, > Amit > I use RMail from phpguru.org (previously called

Re: [PHP] Pagination?

2010-06-09 Thread Sharl.Jimh.Tsin
yes,LIMIT for mysql is useful. Best regards, Sharl.Jimh.Tsin 2010/6/8 Ashley Sheridan : > On Tue, 2010-06-08 at 11:37 -0300, Paul Halliday wrote: > >> I just spent the last 1/2 hour looking at many different solutions for >> this. Is there a universal favorite? >> >> Thanks. >> > > > It depends

[PHP] Generic Email

2010-06-09 Thread Amit Bobade
Hi friends, I am new in PHP. I want to know that how to send an email in HTML format(i.e. with proper header, footer, etc) in PHP. Please suggest me with code. -- Thanks and Regards, Amit

[PHP] Re: combo box validation

2010-06-09 Thread Pete Ford
On 07/06/10 18:49, David Mehler wrote: Hello, I've got a form with two combo boxes, one for the month one for the day. Both are required. I've got code that checks the post submission to ensure neither is empty. My problem is that if a user does not select anything in the combo boxes January firs