Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7429749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:01:27+00:00 2026-05-29T09:01:27+00:00

I am attempting to search a SQL table from a PHP script. the SQL

  • 0

I am attempting to search a SQL table from a PHP script. the SQL table is a word list and in the PHP I call a Python script to do the permutations of a given word. Everything is working until I actually go to execute the mysql_query. I need some formatting advice on how to pass so many values to a Select statement. From what I’ve seen it needs to be in the form (‘a’,’b’,’c’,…) and this is how it is formatted but I’m not getting a return on the actual execution.

<?php
ini_set('display_errors','On');
error_reporting(E_ALL);
$con= mysql_connect("127.0.0.1","app","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
mysql_select_db("wordlookup");


//Retrieve the data.
$word = $_POST['data'];


$perm = exec("python comb.py $word");

$query="SELECT * FROM words WHERE IN (" .$perm. ")";
print $query;
$sql=mysql_query($query);
print $sql;



mysql_close($con);
?>

This is all of the PHP file, the output from the python call would be in the ‘a’,’b’,’c’… format and the random prints are just debugging. The print $sql doesn’t actually put out anything at the moment.
Thanks,
Kyle

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:01:28+00:00Added an answer on May 29, 2026 at 9:01 am
    SELECT * FROM words WHERE IN (...)
    

    Your query is missing a condition. WHERE what IN ...? You need to fill in a column name there.

    Further, if a query is not working, ask the database why it didn’t work:

    $result = mysql_query($query);
    if (!$result) {
        echo mysql_error();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Attempting to print out a list of values from 2 different variables that are
When attempting to enable search query logging from the Shared Services Provider of my
I'm attempting to apply Ayende's order search from here to an existing index. The
I'm attempting to implement complete search functionality in my ASP.NET MVC (C#, Linq-to-Sql) website.
I'm attempting to write a search function for a database table that needs to
I am attempting to setup a full text search catalog in SQL Server 2008
I'm attempting to profile a Java web search program called Nutch from source. As
I'm attempting to use regexp to parse a search string that from time to
I'm attempting to send a dictionary from jQuery to Django using a getJSON call:
I am currently attempting to use Lucene to search data populated in an index.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.