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
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
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
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
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
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
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
7 matches
Mail list logo