mySQL and PHP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Khai

    mySQL and PHP

    Greetings -

    Right to the point:

    I'm using mySQL and PHP on a webhost, and WordPress. ...and I'm very very
    very new to this stuff.

    Wordpress is what I'm using to make it easy for my pops to post articles.
    My index.php uses some code to pull from the mySQL db (created by wordpress)
    and puts the post content into a div, then p class. However, I'm noticing
    that when the content contains html coding, it seems to fall out of the
    class and lose it's padding. Is there some command I need to use to modify
    the html code in the content when it's posted to my page?

    Below is what I think is the relevant code: You can check the results at
    www.meetwithkbh.com (yes, it's got a goal). If there's no html like <ul>'s
    and <li>'s included in the post, it formats fine with the padding, but - if
    there is, it'll drop out of the padding that i'm trying to keep.

    <?php
    $db = mysql_connect(" localhost", "mywordpressdb" , "*******"); /*no, these
    aren't the real user/pass ;) */
    mysql_select_db ("dbwordpress", $db);
    $result = mysql_query("SE LECT id, post_title, post_content, post_date_gmt
    FROM wp_posts ORDER BY post_date_gmt DESC Limit 0, 5",$db);
    while ($myrow = mysql_fetch_row ($result)) {
    echo "<div class=\"post\"> \n\t<p class=\"posttit le\">";
    printf("%10.60s ", $myrow[1]);
    echo "</p>";
    echo "\n<p class=\"postcon tent\">";
    printf("%10.400 s",$myrow[2]);
    echo "...<a href=\"More.php \">Read More</a></p>\n</div><br />\n";
    }
    mysql_close($db );
    ?>

    Here is the css, contained in the index.php too, which is in the proper
    place in the index.php:
    ..posttitle { font-size: 120%;
    font-weight: bold;
    color: white;
    background: #806C59;
    padding: 3px 3px 3px 1em;
    margin-top:0em;
    }

    ..postcontent { padding-left:2em;
    padding-right: 2em;
    text-align: justify;
    }

    ..post {
    border: 1px solid #cccccc;
    line-height:1em;
    }


  • Oli Filth

    #2
    Re: mySQL and PHP

    Khai said the following on 11/11/2005 16:36:[color=blue]
    > Greetings -
    >
    > Right to the point:
    >
    > I'm using mySQL and PHP on a webhost, and WordPress. ...and I'm very very
    > very new to this stuff.
    >
    > Wordpress is what I'm using to make it easy for my pops to post articles.
    > My index.php uses some code to pull from the mySQL db (created by wordpress)
    > and puts the post content into a div, then p class. However, I'm noticing
    > that when the content contains html coding, it seems to fall out of the
    > class and lose it's padding. Is there some command I need to use to modify
    > the html code in the content when it's posted to my page?
    >[/color]




    --
    Oli

    Comment

    • Toby Inkster

      #3
      Re: mySQL and PHP

      Oli Filth wrote:
      [color=blue]
      > http://www.php.net/htmlspecialchars[/color]

      or perhaps: http://uk2.php.net/manual/en/function.strip-tags.php

      --
      Toby A Inkster BSc (Hons) ARCS
      Contact Me ~ http://tobyinkster.co.uk/contact

      Comment

      • Raqueeb Hassan

        #4
        Re: mySQL and PHP

        >> http://www.php.net/htmlspecialchars
        [color=blue]
        > or perhaps: http://uk2.php.net/manual/en/function.strip-tags.php[/color]

        Perfect links! Here is an example from man pages ....


        <?php
        $new = htmlspecialchar s("<a href='test'>Tes t</a>", ENT_QUOTES);
        echo $new; // &lt;a href=&#039;test &#039;&gt;Test& lt;/a&gt;
        ?>


        --
        Raqueeb Hassan
        Bangladesh

        Comment

        Working...