Jump to content

jlhaslip

Advanced Member
  • Posts

    524
  • Joined

  • Last visited

Posts posted by jlhaslip

  1. There is no CSS tag named 'title' which can be styled.

     

    Please post your complete html page so we can see what you are calling 'title'. Do you mean to style a div with an ID? In that case, the following would work.

    #title {
    ... add styles here
    }
    
    
    ... div content here
    
    

  2. The search engines use the html output that your php code generates, so, no, the source being php doesn't affect your search results.

    There are many more factors which will be affecting the site search results.

     

    Meeting the W3C standards for the code,

    SEO friendly URL's,

    good original content,

    Searchword competition,

    your site's age on the Inter-webs

     

    are a few of the ones I can think of off the top of my head.

  3. >
    </pre>
    <li>
    
    
    
    Gite Goulet, is a beautiful first 
               floor 2 twin bedroomed gite. </li>

    Using Microsoft Word for a text editor? It adds non-standard code. All of the formatting could be in a class and in the CSS file for the site. That would be the best method to use for the site.

    The design/layout you currently have can be re-done to use CSS easily enough. I like the clean simplicity of the page.

  4. Receive the data as POST array elements, ie: $_POST['name'].

    Clean the data like so:

    $clean_data = escape_data($_POST['name']);

    Then, echo the $clean_data.

     

    The function should remove the slashes only if the magic_quotes_gpc is active, so you use it to allow your script to function the same whether the magic_quotes is on or off.

  5. Yes, CSS3 will allow for rounded corners, but Browser support can not be depended upon yet. The CSS3 Spec is still being written, and the Spec is subject to change.

    Also, the spec will drop things which are not supported be a minimum number of Browsers.

  6. Similar to the use of javascript/DOM, but a little bit more intensive would be an AJAX function to do the content retreival.

    On another note, why is the flashing and flickering happening? Does the page Flash and flicker when it gets losded the first time? Does it happen in all Browsers?

  7. You will need to change some settings in your php.ini file for the XAMPP to work with an SMTP mail function.

    Xampp has a default page that is orange in colour. Start the XAMPP and then type in http://localhost. Then on the left hand side, select PHP INFO for a listing of the XAMPP settings. Near the top, there is an item which tells you the location of the php .ini file to alter.

    Google for more information about changing the SMTP settings. I never use the mail feqature on my XAMPP, or I would be of more help to you.

    Check also at apachefriends.org, in the FAQ section.

×
×
  • Create New...