Bizarre (to me) result: intermittant data disappearance

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Bizarre (to me) result: intermittant data disappearance

    I've been having some really weird problems with a very simple PHP
    app. I'm wondering if anyone can help me sort this out.

    I have a page that prints out the results of a MySQL query as an HTML
    table using a for loop: nothing too exotic there.

    However, sometimes one column shows the data it's supposed to contain,
    and sometimes it doesn't. (The name of the field is "category".) I
    checked the actual DB data. The data is there.

    That's not all. I just visited the page and got the result below. PHP
    has inserted "(" characters between the table rows. I can see how
    maybe a syntax error could cause that, but why would it only happen
    sometimes?

    Why does that column of data disappear and then reappear when I visit
    the page later?

    Php code and HTML output are given below.

    Setup information:

    FreeBSD 4.7
    PHP 4.3.8
    Zend Optimizer 2.5.1
    MySQL 4.0.18

    --------------------------------------------------------------------------
    PHP CODE
    --------------------------------------------------------------------------

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>AFWH Website Admin</title>
    <? include("../include/headerItems.htm"); ?>
    </head>

    <body>
    <?
    $con = mysql_connect("localhost", "MYUSERNAME", "MYPASSWORD");
    if (!$con)
    {
    echo "Error connecting to DB";
    }
    mysql_select_db("articles");
    $statement = "SELECT * FROM articles";
    $result = mysql_query($statement);
    ?>

    <h1 id="pageTitle"><? echo mysql_num_rows($result); ?>
    articles</h1>
    <p id="menu"><a href="articleFormIn.php">Add article</a> | <a
    href="listArticles.php">List all</a></p>
    <table id="articleListing">
    <tr>
    <td>Filename</td>
    <td>Category</td>
    <td>Title</td>
    <td>Date</td>
    <td>Publish</td>
    <td>&nbsp;</td>
    <td>Idx. pg. code</td>
    </tr>
    <?
    $rowClass = "white";
    for ($i = 0 ; $i < mysql_num_rows($result) ; $i++)
    {
    if ($rowClass == "white")
    {
    $rowClass = "grey";
    } else {
    $rowClass = "white";
    }
    $row = mysql_fetch_array($result);
    ?>

    <tr class="<? echo $rowClass; ?>">
    <td><? echo $row["filename"]; ?>
    </td>

    <td><? echo $row["category"]; ?>
    </td>

    <td><a href='editArticle.php?id=<? echo $row["ID"]; ?>'>
    <? echo $row["title"]; ?>: <? echo $row["subtitle"]; ?>
    </a></td>

    <td><? echo $row["date"]; ?>
    </td>

    <td>
    Publish >
    <a href="publish.php?id=<? echo $row["ID"] ?>&curr=1">Current</a>
    |
    <a href="publish.php?id=<? echo $row["ID"] ?>&curr=0">Archive</a>
    </td>

    <td>
    <a href="deleteConfirm.php?id=<? echo $row["ID"] ?>">DEL from
    DB</a>
    </td>

    <td><a href='indexPgCode.php?id=<? echo $row["ID"]; ?>'>Snippet</a>
    </td>
    </tr><?
    }
    ?>
    </table>
    </body>
    </html>


    --------------------------------------------------------------------------
    RESULTING HTML OUTPUT
    --------------------------------------------------------------------------

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>AFWH Website Admin</title>
    <meta http-equiv="Content-type"
    content="text/html; charset=us-ascii" />
    <meta http-equiv="Content-Language"
    content="en-us" />
    <meta name="ROBOTS"
    content="NONE" />
    <style type="text/css">
    /*<![CDATA[*/
    @import url(/admin/css/admin.css);
    /*]]>*/
    </style> </head>

    <body>

    <h1 id="pageTitle">12 articles</h1>

    <p id="menu"><a href="articleFormIn.php">Add article</a> | <a
    href="listArticles.php">List all</a></p>
    <table id="articleListing">
    <tr>
    <td>Filename</td>
    <td>Category</td>
    <td>Title</td>

    <td>Date</td>
    <td>Publish</td>
    <td>&nbsp;</td>
    <td>Idx. pg. code</td>
    </tr>

    ( <tr class="grey">
    <td>/articles/free/newmodelofarousal.htm </td>


    <td> </td>

    <td><a href='editArticle.php?id=8'>
    A New Model of Arousal: At mid-life, desire may need a
    jump start </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=8&curr=1">Current</a> |
    <a href="publish.php?id=8&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=8">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=8'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/combattingdepression.htm
    </td>

    <td> </td>

    <td><a href='editArticle.php?id=9'>
    Combatting Depression with a Better Diet: What omega-3
    fatty acids can do for you </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=9&curr=1">Current</a> |
    <a href="publish.php?id=9&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=9">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=9'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/paid/october_04/troublesleeping.htm
    </td>

    <td>SLEEP </td>

    <td><a href='editArticle.php?id=27'>
    More Trouble Sleeping than Your Spouse?: Anxiety or
    Depression May Be the Problem </a></td>

    <td>October, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=27&curr=1">Current</a> |
    <a href="publish.php?id=27&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=27">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=27'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/paid/october_04/beyondcholesterol.htm
    </td>

    <td>SELFCARE </td>

    <td><a href='editArticle.php?id=28'>
    Predicting Heart Disease: Beyond Cholesterol
    </a></td>

    <td>October, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=28&curr=1">Current</a> |
    <a href="publish.php?id=28&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=28">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=28'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/free/controversyoverkegels.htm
    </td>

    <td> </td>

    <td><a href='editArticle.php?id=11'>
    The Controversy over Kegels: Are women doing them
    correctly? </a></td>

    <td>June, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=11&curr=1">Current</a> |
    <a href="publish.php?id=11&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=11">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=11'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/recurringnightmares.htm
    </td>

    <td> </td>

    <td><a href='editArticle.php?id=12'>
    Recurring Nightmares and Post-traumatic Stress: Twice as
    many women suffer as men </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=12&curr=1">Current</a> |
    <a href="publish.php?id=12&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=12">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=12'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/paid/october_04/testosterone.htm
    </td>

    <td>INTERVIEW </td>

    <td><a href='editArticle.php?id=29'>
    Is Testosterone the Answer to Low Libido?: Researcher
    Susan Davis tells when and how it works </a></td>

    <td> </td>

    <td>
    Publish >
    <a href="publish.php?id=29&curr=1">Current</a> |
    <a href="publish.php?id=29&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=29">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=29'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/sexafterprostate.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=14'>
    Sex after Prostate Surgery: What every couple needs to
    know </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=14&curr=1">Current</a> |
    <a href="publish.php?id=14&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=14">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=14'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/free/copingwithpms.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=15'>
    Coping with PMS: Can low-dose antidepressants help?
    </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=15&curr=1">Current</a> |
    <a href="publish.php?id=15&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=15">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=15'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/destress.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=17'>
    How to De-Stress: A Brief Guide to Relaxation Tools
    </a></td>

    <td>June, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=17&curr=1">Current</a> |
    <a href="publish.php?id=17&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=17">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=17'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/free/erectiledysfunction.htm
    </td>

    <td>ABOUT MEN </td>

    <td><a href='editArticle.php?id=19'>
    Straight Talk About Erectile Dysfunction: When the Body
    Won\'t Respond </a></td>

    <td>February, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=19&curr=1">Current</a> |
    <a href="publish.php?id=19&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=19">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=19'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/fightingfatigue.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=21'>
    Fighting Fatigue: How to get a more satisfying sleep
    </a></td>

    <td>February, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=21&curr=1">Current</a> |
    <a href="publish.php?id=21&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=21">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=21'>Snippet</a>
    </td>
    </tr> </table>

    </body>
    </html>
    rajek Guest

  2. Similar Questions and Discussions

    1. data binding : how to tell a XML connector to returna specific result ?
      I see that your message is quite old, but I am having the same issue and trying to research how to put variables into the bound (n) values to...
    2. ColdFusion MX7 intermittant crashing
      We've recently upgraded our development server from 6.1 to 7 and have experienced some issues that I'm wondering if anyone else has had experience...
    3. Total result from datagrid data
      Hello, is it somehow possible to calculate the data from the datagrid and display the result somewhere in the footer? Thanks
    4. #16200 [Com]: Intermittant error [270 (0x0000010e) ] accessing ASP and HTML pages on Virtual
      ID: 16200 Comment by: admin at 7-10 dot com Reported By: philg at growzone dot com dot au Status: Bogus Bug...
    5. Administrator Account Disappearance
      Here is a strange occurence. I created an another account with administrator rights and now I don't have an option to log on as an administrator. ...
  3. #2

    Default Re: Bizarre (to me) result: intermittant data disappearance

    I'm not sure I can see why that should be outputting strangely as you
    suggest.

    However, I think it would be better to use the following for your Loop to
    iterate through the data returned from the database, as you do not need a
    redundant $i loop variable which could possibly be causing problems (??
    maybe if it used somewhere else) (its a lot simpler too):

    while ( $row = mysql_fetch_array($result) ) {
    //table row formatting here etc.
    }

    I have recently been getting some strange results from 'for' loops, so I
    thought I would suggest this.

    Looking at the code also, I assume you have enabled the short opening tag
    (<? as opposed to <?php) and it is working correctly?

    Andrew


    "rajek" <rajek@nospam.com> wrote in message
    news:41605f81$0$10708$2c56edd9@news.cablerocket.co m...
    I've been having some really weird problems with a very simple PHP
    app. I'm wondering if anyone can help me sort this out.

    I have a page that prints out the results of a MySQL query as an HTML
    table using a for loop: nothing too exotic there.

    However, sometimes one column shows the data it's supposed to contain,
    and sometimes it doesn't. (The name of the field is "category".) I
    checked the actual DB data. The data is there.

    That's not all. I just visited the page and got the result below. PHP
    has inserted "(" characters between the table rows. I can see how
    maybe a syntax error could cause that, but why would it only happen
    sometimes?

    Why does that column of data disappear and then reappear when I visit
    the page later?

    Php code and HTML output are given below.

    Setup information:

    FreeBSD 4.7
    PHP 4.3.8
    Zend Optimizer 2.5.1
    MySQL 4.0.18

    --------------------------------------------------------------------------
    PHP CODE
    --------------------------------------------------------------------------

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>AFWH Website Admin</title>
    <? include("../include/headerItems.htm"); ?>
    </head>

    <body>
    <?
    $con = mysql_connect("localhost", "MYUSERNAME", "MYPASSWORD");
    if (!$con)
    {
    echo "Error connecting to DB";
    }
    mysql_select_db("articles");
    $statement = "SELECT * FROM articles";
    $result = mysql_query($statement);
    ?>

    <h1 id="pageTitle"><? echo mysql_num_rows($result); ?>
    articles</h1>
    <p id="menu"><a href="articleFormIn.php">Add article</a> | <a
    href="listArticles.php">List all</a></p>
    <table id="articleListing">
    <tr>
    <td>Filename</td>
    <td>Category</td>
    <td>Title</td>
    <td>Date</td>
    <td>Publish</td>
    <td>&nbsp;</td>
    <td>Idx. pg. code</td>
    </tr>
    <?
    $rowClass = "white";
    for ($i = 0 ; $i < mysql_num_rows($result) ; $i++)
    {
    if ($rowClass == "white")
    {
    $rowClass = "grey";
    } else {
    $rowClass = "white";
    }
    $row = mysql_fetch_array($result);
    ?>

    <tr class="<? echo $rowClass; ?>">
    <td><? echo $row["filename"]; ?>
    </td>

    <td><? echo $row["category"]; ?>
    </td>

    <td><a href='editArticle.php?id=<? echo $row["ID"]; ?>'>
    <? echo $row["title"]; ?>: <? echo $row["subtitle"]; ?>
    </a></td>

    <td><? echo $row["date"]; ?>
    </td>

    <td>
    Publish >
    <a href="publish.php?id=<? echo $row["ID"] ?>&curr=1">Current</a>
    |
    <a href="publish.php?id=<? echo $row["ID"] ?>&curr=0">Archive</a>
    </td>

    <td>
    <a href="deleteConfirm.php?id=<? echo $row["ID"] ?>">DEL from
    DB</a>
    </td>

    <td><a href='indexPgCode.php?id=<? echo $row["ID"]; ?>'>Snippet</a>
    </td>
    </tr><?
    }
    ?>
    </table>
    </body>
    </html>


    --------------------------------------------------------------------------
    RESULTING HTML OUTPUT
    --------------------------------------------------------------------------

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>AFWH Website Admin</title>
    <meta http-equiv="Content-type"
    content="text/html; charset=us-ascii" />
    <meta http-equiv="Content-Language"
    content="en-us" />
    <meta name="ROBOTS"
    content="NONE" />
    <style type="text/css">
    /*<![CDATA[*/
    @import url(/admin/css/admin.css);
    /*]]>*/
    </style> </head>

    <body>

    <h1 id="pageTitle">12 articles</h1>

    <p id="menu"><a href="articleFormIn.php">Add article</a> | <a
    href="listArticles.php">List all</a></p>
    <table id="articleListing">
    <tr>
    <td>Filename</td>
    <td>Category</td>
    <td>Title</td>

    <td>Date</td>
    <td>Publish</td>
    <td>&nbsp;</td>
    <td>Idx. pg. code</td>
    </tr>

    ( <tr class="grey">
    <td>/articles/free/newmodelofarousal.htm </td>


    <td> </td>

    <td><a href='editArticle.php?id=8'>
    A New Model of Arousal: At mid-life, desire may need a
    jump start </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=8&curr=1">Current</a> |
    <a href="publish.php?id=8&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=8">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=8'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/combattingdepression.htm
    </td>

    <td> </td>

    <td><a href='editArticle.php?id=9'>
    Combatting Depression with a Better Diet: What omega-3
    fatty acids can do for you </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=9&curr=1">Current</a> |
    <a href="publish.php?id=9&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=9">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=9'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/paid/october_04/troublesleeping.htm
    </td>

    <td>SLEEP </td>

    <td><a href='editArticle.php?id=27'>
    More Trouble Sleeping than Your Spouse?: Anxiety or
    Depression May Be the Problem </a></td>

    <td>October, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=27&curr=1">Current</a> |
    <a href="publish.php?id=27&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=27">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=27'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/paid/october_04/beyondcholesterol.htm
    </td>

    <td>SELFCARE </td>

    <td><a href='editArticle.php?id=28'>
    Predicting Heart Disease: Beyond Cholesterol
    </a></td>

    <td>October, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=28&curr=1">Current</a> |
    <a href="publish.php?id=28&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=28">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=28'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/free/controversyoverkegels.htm
    </td>

    <td> </td>

    <td><a href='editArticle.php?id=11'>
    The Controversy over Kegels: Are women doing them
    correctly? </a></td>

    <td>June, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=11&curr=1">Current</a> |
    <a href="publish.php?id=11&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=11">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=11'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/recurringnightmares.htm
    </td>

    <td> </td>

    <td><a href='editArticle.php?id=12'>
    Recurring Nightmares and Post-traumatic Stress: Twice as
    many women suffer as men </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=12&curr=1">Current</a> |
    <a href="publish.php?id=12&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=12">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=12'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/paid/october_04/testosterone.htm
    </td>

    <td>INTERVIEW </td>

    <td><a href='editArticle.php?id=29'>
    Is Testosterone the Answer to Low Libido?: Researcher
    Susan Davis tells when and how it works </a></td>

    <td> </td>

    <td>
    Publish >
    <a href="publish.php?id=29&curr=1">Current</a> |
    <a href="publish.php?id=29&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=29">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=29'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/sexafterprostate.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=14'>
    Sex after Prostate Surgery: What every couple needs to
    know </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=14&curr=1">Current</a> |
    <a href="publish.php?id=14&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=14">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=14'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/free/copingwithpms.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=15'>
    Coping with PMS: Can low-dose antidepressants help?
    </a></td>

    <td>April, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=15&curr=1">Current</a> |
    <a href="publish.php?id=15&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=15">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=15'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/destress.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=17'>
    How to De-Stress: A Brief Guide to Relaxation Tools
    </a></td>

    <td>June, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=17&curr=1">Current</a> |
    <a href="publish.php?id=17&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=17">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=17'>Snippet</a>
    </td>
    </tr>
    ( <tr class="grey">

    <td>/articles/free/erectiledysfunction.htm
    </td>

    <td>ABOUT MEN </td>

    <td><a href='editArticle.php?id=19'>
    Straight Talk About Erectile Dysfunction: When the Body
    Won\'t Respond </a></td>

    <td>February, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=19&curr=1">Current</a> |
    <a href="publish.php?id=19&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=19">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=19'>Snippet</a>
    </td>
    </tr>
    ( <tr class="white">

    <td>/articles/free/fightingfatigue.htm </td>

    <td> </td>

    <td><a href='editArticle.php?id=21'>
    Fighting Fatigue: How to get a more satisfying sleep
    </a></td>

    <td>February, 2004 </td>

    <td>
    Publish >
    <a href="publish.php?id=21&curr=1">Current</a> |
    <a href="publish.php?id=21&curr=0">Archive</a>

    </td>

    <td>
    <a href="deleteConfirm.php?id=21">DEL from DB</a>
    </td>

    <td><a href='indexPgCode.php?id=21'>Snippet</a>
    </td>
    </tr> </table>

    </body>
    </html>


    Andrew Milne Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139