Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 31,181 points

mstrzofdrk

Favorite Answers17%
Answers249

horror movies thriller movies comedy movies

  • iTunes and Android App Testing Question?

    Is there a testing phase in iTunes and Samsung where one can upload the app but not have it visible on the app library for sale yet?

    2 AnswersProgramming & Design8 years ago
  • What is the Best Place to Live in US With These Qualities?

    OK guys, this is your opportunity to do your good deed of the day and help out a fellow human. I want to know what is the best place to live that has the following:

    . Close to water

    . With many restaurants

    . With many outdoors activities

    . Hip Area with Starbucks or coffee (yeah I know they are everywhere but just saying I need my coffee)

    . Water sports

    . Change of seasons

    . Museums

    . Art Festivals

    . Book Fairs

    . Renaissance Fairs

    . Friendly People

    . Hiking at driving distance

    . Shopping malls

    I've been to:

    Burlington, Vermont and did not like it for me. It was too rural.

    Miami, Florida.

    Seattle looks nice in pictures, never been there? Any people from Seattle here?

    4 AnswersOther - Society & Culture8 years ago
  • Need a MySQL query that matches exact phrase?

    I need a query that matches the keywords entered exactly. Example, if users type blue blouse it should return all blue blouses NOT any blouses nor any blue tops which is what my query is doing now. Thanks to all that reply.

    The code that I have is below:

    <?php include("functions/globals.php"); ?>

    <?php include("header.php"); ?>

    <?php session_start(); ?>

    <?php ob_start();//Required for the redirect to work?>

    <SCRIPT LANGUAGE="JavaScript" SRC="java/ratings.js"></SCRIPT>

    <SCRIPT LANGUAGE="JavaScript" SRC="java/jquery.js"></SCRIPT>

    <div class="container">

    <div class="contentcontainer">

    <?php //include("sidebar.php"); ?>

    <?php

    $words = $_POST['search'];

    OpenDatabase();

    $words = mysql_real_escape_string($words);

    $ids = GetIDsFromWords($words);//Get all of the Keyword ID's

    $num = mysql_numrows($ids);

    if($num > 0)

    {

    $num = mysql_numrows($ids);

    $query = "SELECT movieid FROM moviewords WHERE wordid=";

    for($x = 0; $x < $num; $x++)

    {

    if($x+1 == $num)

    $query .= mysql_result($ids, $x, "id");

    else

    $query .= mysql_result($ids, $x, "id") . " OR wordid=";

    }

    $result = QuickQuery($query);

    $num = mysql_numrows($result);

    $movieids = array();

    for($x = 0; $x < $num; $x++)

    {

    $movieids[$x] = mysql_result($result, $x, "movieid");

    }

    $query = "SELECT * FROM movies WHERE MATCH(description, title) AGAINST('{$words}') OR id=";

    for($x = 0; $x < sizeof($movieids); $x++)

    {

    if($x+1 == sizeof($movieids))

    $query .= $movieids[$x];

    else

    $query .= $movieids[$x] . " OR id=";

    }

    $result = QuickQuery($query);

    }

    else

    $result = QuickQuery("SELECT * FROM movies WHERE MATCH(description, title) AGAINST('{$words}')");

    $num=mysql_numrows($result);

    if($num)

    include("sidebar.php");

    $results = DisplayResults($result);

    ?>

    </div><!--contentcontainer-->

    </div><!--container-->

    <?php include("footer.php"); ?>

    </body>

    </html>

    1 AnswerProgramming & Design10 years ago
  • what is the best VOD website?

    I'm looking for a site where I can rent movies that go straight to video. Netflix doesn't have all movies.

    1 AnswerMovies10 years ago
  • I'm almost reaching 50,000 page views. Where can I find advertisers?

    My site is almost reaching 50,000 page views monthly. I need to find good advertisers that pay well to advertise on my site. I have Adsense already. Who can you recommend Yahoo?

    2 AnswersOther - Advertising & Marketing10 years ago