up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question
1  
Please be a little bit more precise. – Gumbo Apr 26 '09 at 8:40
feedback

2 Answers

$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|improve this answer
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 '09 at 8:38
2  
that's what example does. – SilentGhost Apr 26 '09 at 8:41
whoops! let me try. Thanks guys! – Mike L Apr 26 '09 at 8:42
he means that he wants to write his own methods for these tasks! – markus Apr 26 '09 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 '09 at 9:22
feedback

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|improve this answer
I worded it wrong at first. Please advise. Thanks! – Mike L Apr 26 '09 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 '09 at 10:14
@tstenner: edited. – markus Apr 26 '09 at 11:22
feedback

Your Answer

 
or
required, but never shown