Search results

  1. Imagn

    xml sitemap build by the Google?

    Is this the top part of your doc? <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"...
  2. Imagn

    You don't need to spend money to get listed on search engines.

    To anyone viewing this post please do your own research before listening to self-proclaimed experts. There's a lot of good and bad advice out there just ask for a lot of references.
  3. Imagn

    Does PHP affect SEO capability

    They see what everyone else sees... A good practice is to view your site through a text-only browser (Lynx) to get an idea of how a spider will see your site. Download Lynx: http://www.vordweb.co.uk/standards/download_lynx.htm
  4. Imagn

    when bots crawl the pages?

    Your PageRank will also affect how often your site is cached
  5. Imagn

    External image size.

    PHP Solution: ----------------------------------------------------- FUNCTION ----------------------------------------------------- function createThumbnail($img_file, $max_width, $max_height, $img_quality, $img_path='images', $class='', $alt_tag='') { $nameparts =...
  6. Imagn

    javascript in php

    Though it's minimal in this instance inline HTML/JavaScript is faster than using PHP to generate it. There's never really a "correct" way :)
  7. Imagn

    event function

    You need to use an AJAX script since events are client-side and PHP is server-side
  8. Imagn

    PHP MySQL

    The better way is run a file check... $the_file = $FILEPATH . $FILENAME; if (is_file($the_file)) { echo "<img...."; }
  9. Imagn

    php mysql question?

    Add this line at the start of your loop: $class = "altRow"; <-- START LOOP --> if ($class == "altRow") { $class = "altRow2"; } else { $class = "altRow"; } <-- END LOOP --> Obviously add the style call ('altRow' or 'altRow2') to either your row or cell
  10. Imagn

    Formatting issues with form

    It's probably from users cutting and pasting from Word docs or some other word processor.
  11. Imagn

    PHP auto-script

    What you need it set up a cronjob that calls a php script at a specified time. You'd then make a lynx dump to "activate" the page. Example: lynx -dump http://www.YOURWEBSITE.com/php_script.php What is a cronjob? http://www.aota.net/Script_Installation_Tips/cronhelp.php3
  12. Imagn

    Frame?

    Spiders will only "read" what is on the page it hits which only includes the frameset definition. If you want to get an idea of the spiders will see I suggest either downloading the Lynx browser: http://www.vordweb.co.uk/standards/download_lynx.htm) or use the "Lynx View" link on the...
  13. Imagn

    window.open

    Can you please include the action script for the "Toyota" button....
Top