Results 1 to 3 of 3

Thread: Problem with searching database with php code

  1. #1
    Join Date
    Jul 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Problem with searching database with php code

    Hi, I'm having a problem, the error I get is 'couldn't execute query'. Hope someone can help me. (database connection seems to be fine). It's to search 14 countries for various articles. Any help would really be appreciated. Thanks

    PHP Code:
    <td><form name="form" action="databasesearch.php" method="get">
    <input type="text" name="q" />
    <input type="submit" name="Submit" value="Search Database" />
    </form
    <?php

    // Get the search variable from URL
    $var = @$_GET['q'] ;
    $trimmed trim($var); //trim whitespace from the stored variable

    // rows to return
    $limit=10

    // check for an empty string and display a message.
    if ($trimmed == "")
    {
    echo 
    "<p>Please enter a search...</p>";
    exit;
    }

    // check for a search parameter
    if (!isset($var))
    {
    echo 
    "<p>We dont seem to have a search parameter!</p>";
    exit;
    }

    //connect to your database ** EDIT REQUIRED HERE **
    mysql_connect("websiteaddressgoeshere","usernamegoeshere","passwordgoeshere"); //(host, username, password)

    //specify database ** EDIT REQUIRED HERE **
    mysql_select_db("databasenamegoeshere") or die("Unable to select database"); //select which database we're using

    // Build SQL Query 
    $query "select * from files where path like \"%$trimmed%\" 
    order by id"
    ;

    $numresults=mysql_query($query);
    $numrows=mysql_num_rows($numresults);

    // If we have no results, offer a google search as an alternative

    if ($numrows == 0)
    {
    echo 
    "<h4>Results</h4>";
    echo 
    "<p>Sorry, your search: &quot;" $trimmed "&quot; returned zero results</p>";

    // google
    echo "<p><a href=\"http://www.google.com/search?q=" 
    $trimmed "\" target=\"_blank\" title=\"Look up 
    $trimmed " on Google\">Click here</a> to try the 
    search on google</p>"
    ;
    }

    // next determine if s has been passed to script, if not use 0
    if (empty($s)) {
    $s=0;
    }

    // get results
    $query .= " limit $s,$limit";
    $result mysql_query($query) or die("Couldn't execute query");

    // display what the person searched for
    echo "<p>You searched for: &quot;" $var "&quot;</p>";

    // begin to show results set
    echo "Results";
    $count $s ;

    // now you can display the results returned
    while ($rowmysql_fetch_array($result)) {
    $title $row["id"];

    echo 
    "$count.)&nbsp;$title;
    $count++ ;
    }

    $currPage = (($s/$limit) + 1);

    //break before paging
    echo "<br />";

    // next we need to do the links to other results
    if ($s>=1) { // bypass PREV link if s is 0
    $prevs=($s-$limit);
    print 
    "&nbsp;<a href=\"$PHP_SELF?s=$prevs&q=$var\">&lt;&lt; 
    Prev 10</a>&nbsp&nbsp;"
    ;
    }

    // calculate number of pages needing links
    $pages=intval($numrows/$limit);

    // $pages now contains int of pages needed unless there is a remainder from division

    if ($numrows%$limit) {
    // has remainder so add one page
    $pages++;
    }

    // check to see if last page
    if (!((($s+$limit)/$limit)==$pages) && $pages!=1) {

    // not last page so give NEXT link
    $news=$s+$limit;

    echo 
    "&nbsp;<a href=\"$PHP_SELF?s=$news&q=$var\">Next 10 &gt;&gt;</a>";
    }

    $a $s + ($limit) ;
    if (
    $a $numrows) { $a $numrows ; }
    $b $s ;
    echo 
    "<p>Showing results $b to $a of $numrows</p>";

    ?>
    Last edited by djr33; 07-25-2007 at 11:36 PM. Reason: QUOTE looks ugly for PHP code

  2. #2
    Join Date
    Jul 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Is there really no one out there that can help me with this?

  3. #3
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    The issue is in this line: $query .= " limit $s,$limit";
    The other query isn't generating an error, so it must be that.
    I'm not sure what the problem is, exactly.
    You might want to set limit as a string, not a number, like:
    $limit = '10';, since that may be treated differently by PHP.

    Is there any more debugging info you can give us?

    Try typing in the query manually as it should be sent, and see if that works. If not, then your query idea is wrong; if it does work, then it is being generated incorrectly.


    Now, one other option is that $limit may be more than the number of rows, and that might give an error. I'm not sure about this.

    if ($numrows < 10) { $limit = $numrows; }


    Actually, I think the issue has to do with your if statement ending--
    if (no results) {
    ...display error....
    }
    ...now search...

    The search query is outside the if, so it will still execute if there are no results... error.

    You may just be able to move the } and fix it.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

Bookmarks

Posting Permissions

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