Jump to content

Passing Variables to a Query?


Skipjackrick

Recommended Posts

I am passing a variable through a URL and I want to use the variable in a query.  However it doesn't work. 

Here is an example link that holds the variable.

 

http://www.mysite.com/teampage.php?team_idvar=1

 

This is what my query looks like. (Code below)

 

I used.....

$_REQUEST['team_idvar']

 

Is the correct?  When I put the actual team_id it works so i know the rest of my code is good.

 

I get this error

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING

 

<?php
$query_anglertotals = "SELECT
                         species_id,
                         SUM(IF(angler='1',1,0)) AS anglerA,
                         SUM(IF(angler='2',1,0)) AS anglerB,
                         SUM(IF(angler='Curmit',1,0)) AS anglerC,
                         SUM(IF(angler='Old Salt',1,0)) AS anglerD,
                         SUM(IF(angler='3',1,0)) AS anglerE,
                         SUM(IF(team_id=1,1,0)) AS teamtotal
                         FROM submit
                         WHERE species_id<25 AND yyyy=2008 AND team_id=$_REQUEST['team_idvar']
                         GROUP BY species_id
                         ORDER BY species_id";

$anglertotals = mysql_query($query_anglertotals) or die(mysql_error());
?>

Link to comment
Share on other sites

Set it as a variable just before you do your query, and then call the variable instead of the $_REQUEST inside it. SQL doesn't really seem to like $_REQUESTs being inside queries. :)

 

Thanks!  Worked like a champ!

 

As I was doing some google searches I read a few things about SQL injection by passing variables through URL's?  How can I protect against this?  The material I was reading didn't explain it very well.

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.