elite_prodigy Posted December 10, 2008 Share Posted December 10, 2008 Why is navId comming out blank? <?php include 'config.php'; include 'functions.php'; mysql_select_db('exembar_site'); if( isset($_POST['title']) & isset($_POST['display']) & isset($_POST['topbar']) & isset($_POST['content'])) { $title = $_POST['title']; $display = $_POST['display']; $top = $_POST['topbar']; $content = $_POST['content']; //sanitize everything $title = sanitize($title); $display = sanitize($display); $top = sanitize($top); $content = sanitize($content); $sql = "INSERT INTO `navigation` VALUES('','{$display}','')"; mysql_query($sql) or die(mysql_error()); $sql = "SELECT * FROM `navigation` WHERE `display`='{$display}'"; $res = mysql_query($sql) or die(mysql_error()); $stuff = mysql_fetch_array($res) or die(mysql_error()); $navId = $stuff['id']; echo $navID; $sql = "INSERT INTO `pages` VALUES('','{$title}','{$navID}')"; mysql_query($sql) or die(mysql_error()); $sql = "INSERT INTO `pgContent` VALUES('','{$top}','{$content}','{$navID}')"; mysql_query($sql) or die(mysql_error()); //header("location:{$root}"); } else { echo "Variables Were Not Defined!"; } ?> I don't know what to try, as i've tried it all.... Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/ Share on other sites More sharing options...
cwarn23 Posted December 10, 2008 Share Posted December 10, 2008 One reason that I can see is because of the below line: echo $navID; PHP is case sensitive and should be the following: echo $navId; Hope that helps. Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711136 Share on other sites More sharing options...
chronister Posted December 10, 2008 Share Posted December 10, 2008 I am not an expert on this stuff by any means and I may be wrong here, but this don't look right to me.. $sql = "INSERT INTO `navigation` VALUES('','{$display}','')"; To the best of my knowledge, an insert statement should look like this.. $sql = INSERT INTO tableName (fieldName1, fieldName2, fieldName3) VALUES ('$value1', '$value2', '$value3'); Thats what I can see offhand... but like I said I could be wrong about the structure of your query. Nate Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711166 Share on other sites More sharing options...
New Coder Posted December 10, 2008 Share Posted December 10, 2008 I am not an expert on this stuff by any means and I may be wrong here, but this don't look right to me.. $sql = "INSERT INTO `navigation` VALUES('','{$display}','')"; To the best of my knowledge, an insert statement should look like this.. $sql = INSERT INTO tableName (fieldName1, fieldName2, fieldName3) VALUES ('$value1', '$value2', '$value3'); Thats what I can see offhand... but like I said I could be wrong about the structure of your query. Nate You don't have to specify columns in an insert statement. It will insert the data in the order the columns are stored in the table hence the '' (blanks) in the values. However as a best practice I would always state the columns. However I've never used { } around my values. So not sure if this is correct. Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711231 Share on other sites More sharing options...
waynew Posted December 10, 2008 Share Posted December 10, 2008 I am not an expert on this stuff by any means and I may be wrong here, but this don't look right to me.. $sql = "INSERT INTO `navigation` VALUES('','{$display}','')"; To the best of my knowledge, an insert statement should look like this.. $sql = INSERT INTO tableName (fieldName1, fieldName2, fieldName3) VALUES ('$value1', '$value2', '$value3'); Thats what I can see offhand... but like I said I could be wrong about the structure of your query. Nate You don't have to specify columns in an insert statement. It will insert the data in the order the columns are stored in the table hence the '' (blanks) in the values. However as a best practice I would always state the columns. However I've never used { } around my values. So not sure if this is correct. NEVER use that kind of query structure. What if you decide to add a column later on? Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711234 Share on other sites More sharing options...
New Coder Posted December 10, 2008 Share Posted December 10, 2008 aha fair point but I find it useful when I only want to insert into specific columns and then still search on null values. Preferences I guess.. Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711240 Share on other sites More sharing options...
waynew Posted December 10, 2008 Share Posted December 10, 2008 I know. It's just that I'm after coming from a job where the last programmer had used that style of query and that style only. I had to rewrite every query. Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711259 Share on other sites More sharing options...
elite_prodigy Posted December 10, 2008 Author Share Posted December 10, 2008 But i have no intentions at all of adding new columns, so I used that query struct. Makes my life easier... Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711329 Share on other sites More sharing options...
keiran420 Posted December 10, 2008 Share Posted December 10, 2008 you can add ARRAYS into querys using {}.... Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-711341 Share on other sites More sharing options...
elite_prodigy Posted December 11, 2008 Author Share Posted December 11, 2008 Does anyone know why this query is not working at all? It's coming back empty.... Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-712173 Share on other sites More sharing options...
chronister Posted December 11, 2008 Share Posted December 11, 2008 Did you try the whole $navID vs $navId thing..... that would make a big difference as has been pointed out... I would say try echoing out your query and make sure that the values are filled in like your expecting. When I have issues with a sql statement, I generally will echo them out and try them in phpmyadmin... found a lot of issues that way. Thats the only 2 things I can suggest. Nate Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-712183 Share on other sites More sharing options...
l0ve2hat3 Posted December 11, 2008 Share Posted December 11, 2008 yes take out the brakets in all ur querys Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-712206 Share on other sites More sharing options...
haku Posted December 11, 2008 Share Posted December 11, 2008 There is nothing wrong with the brackets in the queries, and for the sake of readability, it is better to have them. Quote Link to comment https://forums.phpfreaks.com/topic/136305-empty-query/#findComment-712230 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.