Jump to content

mysql query


jobs1109

Recommended Posts

Hi,

 

I am getting an error message from my mysql query

 

 

I am using two variables passed from another page that I use in the query.

$Keyword_Search

$Jobcategory

 

when I echo out the variables on this page it show the values entered but how do I used it in my query. Here is the code.

 

 



<?php
include'../somedatabasefilehere';

$Keyword_Search =  $_SESSION['Keyword_Search'];
$Jobcategory =  $_SESSION['Jobcategory'];
echo $Keyword_Search;
echo $Jobcategory;

// getting data from table "Table"


$result = mysql_query(SELECT * FROM Tablename WHERE Keyword_search = "$Keyword_Search" and Jobcategory="$Jobcategory"');

while($row = mysql_fetch_array($result))
   {
   echo $row['Keyword_Search'] . " " . $row['Jobcategory'];
   echo "<br />";
   }


?> 




 

 

Here is the error message I am getting

 

 

Parse error: syntax error, unexpected T_STRING in /home/content/h/i/l/hilo101/html/Hilo-Jobs/Job-Search-Form/Getting-Data-From-Database/Getting-Data-Database.php on line 41

 

Please help.

Link to comment
Share on other sites

Still getting error message Here is the full code

 



<?php
session_start();
?>

<?php
$_SESSION['Keyword_Search']    = $_POST['Keyword_Search']; 
$_SESSION['Jobcategory']      = $_POST['Jobcategory'];
$Keyword_Search =  $_SESSION['Keyword_Search'];
$Jobcategory =  $_SESSION['Jobcategory'];
echo $Keyword_Search;
echo $Jobcategory;

?>


<?php
include'Some-database-connect-file';


// getting data from table "Sometable"


$result = mysql_query("SELECT * FROM sometable WHERE Keyword_search = '$Keyword_Search' and Jobcategory='$Jobcategory'");

while($row = mysql_fetch_array($result))
   {
   echo $row['Keyword_Search'] . " " . $row['Jobcategory'];
   echo "<br />";
   }


?> 






 

 

Here is the error message I am getting.

 

 

 

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/content/h/i/l/hilo101/html/Hilo-Jobs/Job-Search-Form/Getting-Data-From-Database/Getting-Data-Database.php on line 33

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.