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
https://forums.phpfreaks.com/topic/243003-mysql-query/
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
https://forums.phpfreaks.com/topic/243003-mysql-query/#findComment-1248108
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.