Re: [PHP] Re: SEO Experts?

2010-09-26 Thread Shreyas Agasthya
Avoid 302's as mush as possible. --Shreyas On Sun, Sep 26, 2010 at 8:55 PM, Al wrote: > > > On 9/26/2010 8:09 AM, David Mehler wrote: > >> Hello, >> Do we have any SEO experts on this list? I'm not one, learning only, >> reading a book and a few articles/tutorials from webmasters, and I'm >> wa

[PHP] Re: SEO Experts?

2010-09-26 Thread Al
On 9/26/2010 8:09 AM, David Mehler wrote: Hello, Do we have any SEO experts on this list? I'm not one, learning only, reading a book and a few articles/tutorials from webmasters, and I'm wanting to optimize an existing site to get the best search rank possible. Some techniques, dos and don'ts w

Re: [PHP] SEO Experts?

2010-09-26 Thread Nathan Nobbe
Dave, the general advice I can give you is focus on fundamentals not on fads. domain name, h1, h2, title tags and alt attributes are key tools to tell bots what your pages are about. view your pages without javascript or css to see how a bot will view them. links from other sites are important a

Re: [PHP] Array question

2010-09-26 Thread tedd
At 3:31 PM -0500 9/25/10, MikeB wrote: -snip- My question, in the loop, why does tha author use: $results[] = mysql_fetch_array($result); instead of (as I would expect): $results[$j] = mysql_fetch_array($result);? What PHP magic is at work here? Mike: That's just a shorthand way to popula

Re: [PHP] SEO Experts?

2010-09-26 Thread tedd
At 8:09 AM -0400 9/26/10, David Mehler wrote: Hello, Do we have any SEO experts on this list? I'm not one, learning only, reading a book and a few articles/tutorials from webmasters, and I'm wanting to optimize an existing site to get the best search rank possible. Some techniques, dos and don'ts

[PHP] SEO Experts?

2010-09-26 Thread David Mehler
Hello, Do we have any SEO experts on this list? I'm not one, learning only, reading a book and a few articles/tutorials from webmasters, and I'm wanting to optimize an existing site to get the best search rank possible. Some techniques, dos and don'ts would be appreciated. Thanks. Dave. -- PHP Ge

Re: [PHP] Array question

2010-09-26 Thread a...@ashleysheridan.co.uk
I'd also like to add to that: $array = array(); $array[] = 'text'; $array[2] = 123; $array[] = 'hello'; Would output: $array( 0 => 'text', 2 => 123, 3 => 'hello', ); Note the missing index 1, as php makes a numerical index that is one greater than the highest already in use. As the index 2 was