vote up 0 vote down star

What's the PHP code that would do one thing first and then take that and do a second.

1st: I want $_GET a variable and then run a query on it and return variables.

AND THEN

2nd: Use those "other" variables in a query.

I'm thinking I want to do this with two functions b/c my query is based off of what values I send from a form. So it has to get the values from the url and then run the query.

flag
1  
Please be a little bit more precise. – Gumbo Apr 26 at 8:40

2 Answers

vote up 4 vote down
$variables = $_GET['variable'];

mysql_query("SELECT * FROM `table` WHERE `field` = '".mysql_real_escape_string($variables)."' LIMIT 20");

Do you want something like the above?

link|flag
I'm thinking I want to do this with two functions b/c my query is based off of what values I send from a form. So it has to get the values from the url and then run the query. – Mike L Apr 26 at 8:38
2  
that's what example does. – SilentGhost Apr 26 at 8:41
whoops! let me try. Thanks guys! – Mike L Apr 26 at 8:42
he means that he wants to write his own methods for these tasks! – tharkun Apr 26 at 9:00
Its probably not worth writing a function for something as simple as the above. If you needed to repeat it in the same way hundreds of times maybe. – Sam152 Apr 26 at 9:22
vote up 1 vote down

yes, generally you can call any method (= function) from within any other method.

function getVars($vars)
{
    foreach ($vars as $key => $value)
    {
        doSomethingWithMyVars($key, $value)
    }
}

function doSomethingWithMyVars($key, $value)
{
    $sql = 'SELECT this, that FROM mytable WHERE '.$key.' = '.$value;
    //get data
}

getVars($_GET);

but attention, this is just exemplary code, you probably won't do it like that. Also the query wouldn't work for strings. it's just an example of how to call functions from within functions based on what your task seems to be more or less.

link|flag
I worded it wrong at first. Please advise. Thanks! – Mike L Apr 26 at 9:34
Also you should use ' when using strings that shouldn't be interpreted an escape strings used in SQL queries, especially when someone inexperienced will use your code. – tstenner Apr 26 at 10:14
@tstenner: edited. – tharkun Apr 26 at 11:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.