gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 You're missing the ORDER BY clause in your SQL. Oh.. how would I add that? Or where is it missing from (in the above code?) Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832053 Share on other sites More sharing options...
Ken2k7 Posted May 12, 2009 Share Posted May 12, 2009 That same one line of code. Just tack on the ORDER BY clause after the WHERE clause. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832054 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 That same one line of code. Just tack on the ORDER BY clause after the WHERE clause. $sSql = (!empty($_GET['type'])) ? $vehicles->SqlSelect() . " WHERE type = '" . mysql_real_escape_string($_GET['type']) . "'" : $vehicles->SQL() "AND ORDER BY '" . $_GET['order'] . "'"; That line of code? If so, could you possibly tell me how to properly add it to the end of that URL as mine is clearly incorrect. I know this is getting annoying for you I'm sure and I hate to be a pain in the ass.. I'm just trying to learn this stuff and it's alot at once and I've read more tutorials and guides in the past week then I care to remember. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832115 Share on other sites More sharing options...
Ken2k7 Posted May 12, 2009 Share Posted May 12, 2009 You're just thinking too much. Don't add it after the : because the is the empty $_GET['type'] case. You don't need to worry about that one because you know it did the right thing. It only doesn't work if $_GET['type'] is empty. I know you're learning. This is actually one of the more simple things you can do, which is why I am intentionally *NOT* writing this for you. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832153 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 You're just thinking too much. Don't add it after the : because the is the empty $_GET['type'] case. You don't need to worry about that one because you know it did the right thing. It only doesn't work if $_GET['type'] is empty. Ok so.. I'm very close. I got the right output from the variable: SELECT * FROM `vehicles` WHERE type = 'car' AND ORDER BY 'make' By using the code: $sSql = (!empty($_GET['type'])) ? $vehicles->SqlSelect() . " WHERE type = '" . mysql_real_escape_string($_GET['type']) . "' AND ORDER BY '" . $_GET['order'] . "'" : $vehicles->SQL(); (thanks Ken) Now I'm still getting the errors 1) Failed to execute SQL. Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY 'make'' at line 1 2) Fatal error: Call to a member function fields() on a non-object in /home8/craighoo/public_html/goodwills/final/inventory.php on line 913 (Line 913 just calls on the field Status, and since it's not coming up due to the previous error, this error comes up too) Do I need an order type in my syntax too? Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832273 Share on other sites More sharing options...
gevans Posted May 12, 2009 Share Posted May 12, 2009 change $sSql = (!empty($_GET['type'])) ? $vehicles->SqlSelect() . " WHERE type = '" . mysql_real_escape_string($_GET['type']) . "' AND ORDER BY '" . $_GET['order'] . "'" : $vehicles->SQL(); t0 $sSql = (!empty($_GET['type'])) ? $vehicles->SqlSelect() . " WHERE type = '" . mysql_real_escape_string($_GET['type']) . "' ORDER BY '" . $_GET['order'] . "'" : $vehicles->SQL(); Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832275 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 $sSql = (!empty($_GET['type'])) ? $vehicles->SqlSelect() . " WHERE type = '" . mysql_real_escape_string($_GET['type']) . "' ORDER BY '" . $_GET['order'] . "'" : $vehicles->SQL(); The code you supplied fixed all the errors and gives me this output from the variable: SELECT * FROM `vehicles` WHERE type = 'car' ORDER BY 'model' By clicking column headers I can change the output from the variable correctly, but it doesn't actually sort the table.. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832287 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 OK! Last issue: I took out the whole line of code and set it back to: $sSql = $vehicles->SelectSQL(); Then I edited that function to include: // Table level SQL function SqlSelect() { // Select return "SELECT * FROM `vehicles`"; } function SqlWhere() { // Where Type return "type= '". mysql_real_escape_string($_GET['type']) . "'"; } function SqlGroupBy() { // Group By return ""; } function SqlHaving() { // Having return ""; } function SqlOrderBy() { // Order By return ""; } Now it works perfect IF I specify a type in the URL. If I navigate to just inventory.php then it won't display any records because the output of the execution is: SELECT * FROM `vehicles` WHERE type= '' ORDER BY `model` ASC Any chance I can use something like this empty() in order to avoid having that information added if there is no type specified? Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832304 Share on other sites More sharing options...
Ken2k7 Posted May 12, 2009 Share Posted May 12, 2009 You know, you can just make those functions take an optional parameter. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832333 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 You know, you can just make those functions take an optional parameter. I just don't know how. My if then statements were learned in QBasic. I'm googling it, but I can't seem to find how you could return an if then statement. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832337 Share on other sites More sharing options...
Ken2k7 Posted May 12, 2009 Share Posted May 12, 2009 I'm actually giving you better advice. If you inline the $_GET['type'], then the function isn't that great because if you want a different parameter say $_GET['name'], then you'll have to write a bunch of if and else statements. Google PHP Functions Optional Parameters. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832361 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 I'm actually giving you better advice. If you inline the $_GET['type'], then the function isn't that great because if you want a different parameter say $_GET['name'], then you'll have to write a bunch of if and else statements. Google PHP Functions Optional Parameters. Ok.. googling now. function SqlWhere() { // Where Type return "(!empty($_GET['type'])) ? type= '". mysql_real_escape_string($_GET['type']) . "' : "; } I know that this may make it more difficult in the future, but this is the only thing I'll ever need to get from the URL. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832367 Share on other sites More sharing options...
Ken2k7 Posted May 12, 2009 Share Posted May 12, 2009 So basics 101 - 1. If you put things in quotes, they are treated as a string, excluding interpolation of variables. 2. PHP code should not be in quotes unless you're running it via eval. So if you put (!empty($_GET['type']))? inside quotes, then that's what you get. It'll be treated as a string, not as PHP code. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832378 Share on other sites More sharing options...
gamerzfuse Posted May 12, 2009 Author Share Posted May 12, 2009 function SqlWhere() { // Where Type return (!empty($_GET['type'])) ? "type = '". mysql_real_escape_string($_GET['type']) . "' : ""; } This one gives me an error of unexpected "", but if I take one away it gives me unexpected ; This post from PHP.net may be more like what I need? function myFunction($myArgument=null) { if($myArgument===null) $myArgument = $GLOBALS["myVar"]; echo $myArgument; } Although that has no return statement.. so probably not. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832393 Share on other sites More sharing options...
Ken2k7 Posted May 12, 2009 Share Posted May 12, 2009 The unexpected error is because you need to watch your quotes. See the coloring up there? The red part at the end? Well, that means you're not closing the quotes correctly. That PHP.net function is fine. I suggest you read up PHP 101 because you really don't have a clue on what you're doing. I mean the codes on PHP.net are examples. You're not going to find something to copy and paste and expect it to work for every situation. If it doesn't have a return statement, then you can put one in. The example is just to show you how things work. Quote Link to comment https://forums.phpfreaks.com/topic/157737-table-sort-vs-typecar-conflict/page/2/#findComment-832406 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.