Re: [PHP] How do I do count the occurrence of each word?

2012-08-18 Thread tamouse mailing lists
On Sun, Aug 19, 2012 at 12:38 AM, Marco Behnke wrote: > Am 19.08.12 06:59, schrieb tamouse mailing lists: >> On Sat, Aug 18, 2012 at 6:44 PM, John Taylor-Johnston >> wrote: >>> I want to parse this text and count the occurrence of each word: >>> >>> $text = http://www.cegepsherbrooke.qc.ca/~langu

Re: [PHP] How do I do count the occurrence of each word?

2012-08-18 Thread Marco Behnke
Am 19.08.12 06:59, schrieb tamouse mailing lists: > On Sat, Aug 18, 2012 at 6:44 PM, John Taylor-Johnston > wrote: >> I want to parse this text and count the occurrence of each word: >> >> $text = http://www.cegepsherbrooke.qc.ca/~languesmodernes/test/test.html; >> #Can I do this? >> $stripping =

Re: [PHP] How do I do count the occurrence of each word?

2012-08-18 Thread tamouse mailing lists
On Sat, Aug 18, 2012 at 6:44 PM, John Taylor-Johnston wrote: > I want to parse this text and count the occurrence of each word: > > $text = http://www.cegepsherbrooke.qc.ca/~languesmodernes/test/test.html; > #Can I do this? > $stripping = strip_tags($text); #get rid of html > $stripping = strtolow

[PHP] How do I do count the occurrence of each word?

2012-08-18 Thread John Taylor-Johnston
I want to parse this text and count the occurrence of each word: $text = http://www.cegepsherbrooke.qc.ca/~languesmodernes/test/test.html; #Can I do this? $stripping = strip_tags($text); #get rid of html $stripping = strtolower($stripping); #put in lowercase First of all I wa

Re: [PHP] Cost of redirect and site domain switch? Good Practice / Bad Practice / Terrible Practice

2012-08-18 Thread Paul M Foster
On Sat, Aug 18, 2012 at 05:10:39PM -0400, Daniel Brown wrote: >On Aug 18, 2012 4:49 PM, "Paul M Foster" <[1]pa...@quillandmouse.com> >wrote: >> >> I can comment on part of this based on what I was recently told by an >> SEO company. Let's assume you've got a bunch of SEO "goodn

Re: [PHP] Cost of redirect and site domain switch? Good Practice / Bad Practice / Terrible Practice

2012-08-18 Thread Daniel Brown
On Aug 18, 2012 4:49 PM, "Paul M Foster" wrote: > > I can comment on part of this based on what I was recently told by an > SEO company. Let's assume you've got a bunch of SEO "goodness" > (recognition, Google search placement, etc.) going for you on site1.com. > If you a permanent redirect (301)

Re: [PHP] Cost of redirect and site domain switch? Good Practice / Bad Practice / Terrible Practice

2012-08-18 Thread Paul M Foster
On Fri, Aug 17, 2012 at 01:35:11PM -0600, Tristan wrote: > So, I need to change from somedomain.com to somenewdomain.com > > I was thinking of doing this > > 1) create an alias to the site somenewdomain.com to point to current server > 2) run permanent 301 redirect from somedomain.com to somenew