Jump to content

Philip

Staff Alumni
  • Posts

    4,665
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by Philip

  1. <?php // $networks is the array of marked checkboxes, after cleanup of course $var = '\''.explode('\', ', $networks).'\''; $query = "SELECT * FROM `phones` WHERE `network` IN($var)"; // continue query ?>
  2. <?php if(!isset($POST['name']) || !isset($POST['email']) || !isset($POST['subject']) || !isset($POST['body'])) ?> Should really be: <?php if(empty($_POST['name']) || empty($_POST['email']) || empty($_POST['subject']) || empty($_POST['body'])) ?> Isset is great for checking to make sure a variable was set, but will still return true in all of those cases. However empty will check to make sure something was actually filled.
  3. I'll give it a shot: 1. if (isset($item1))... will always happen, because you have initialized the variable $item1 in the statement above it. You need to check the return value, see if it's false or not. 2. Use the IN( ) command. $result = mysql_query("SELECT * FROM `menus_show` WHERE `id` IN('$meal1', '$meal2')"); That way, lets say if you have 3 as meal id #1, the query will show: However, with using this, you need to make sure $meal1 and $meal2 are both sanitized, and initialized (if it's not, you can set it to ''). Also, this would combine the results, and I'm not sure if you wanted to keep it separated.
  4. You said the form name is "genre[]", but you're still putting in $_POST['genres']... or is that just a typo in your post?
  5. If you're not seeing the form, check your query & loop. Try adding this after your query: echo mysql_num_rows($sql666);
  6. Okay, I've been playing around with MySQLi for a few days now - as I needed a more OOP way of reaching the DB. However, I want to be able to be given what columns to select via function parameter, and then run a prepared query like that. I've been able to do that, however I cannot for the life of me figure out how to get the results, since it you have bind the variables. Here's an example of what I'm trying to do (eventually to switch to full OOP and throw this into a class): <?php function getRow($TABLE, $ID, $COLS) { global $mysqli; // get mysqli for($i=0, $col='';$i<count($COLS);$i++) { // loop to grab the column names (these will be safe as they are internal vars) if($i!=0) { $col.=' ,'; } $col.='`'.$COLS[$i].'`'; } // Create query: $query = 'SELECT '.$col.' FROM `'.$TABLE.'` WHERE `id`=?'; if($dbh = $mysqli->prepare($query)) { // SQL is prepped -> lets add the value in now $dbh->bind_param("d", $ID); // Execute it $dbh->execute(); // we can add more executions here if needed later // Store the result, for num_rows $dbh->store_result(); if($dbh->num_rows()>0) { $r = ''; // to suppress any warnings from php // If there were rows found, then we're in business while($dbh->fetch() as $k => $v) { // return value array $r[$k] = $v; } // mysqli fetch array/assoc/row didn't work here either =( // we must find a way to bind_results with variable amounts of variables } else { // otherwise we need to display a warning. addError(WARNING, "No results were found"); // return value $r = false; } // Free the memory $dbh->free_result(); // close this connection, $mysqli will stay open still $dbh->close(); } else { // oops, error! addError(ERROR, "<strong>MySQLi:</strong> ".$mysqli->error); // return value $r = false; } return $r; } ?> I'll get: Now, I'm thinking it is possible with variable variables (it's been a long time since I've worked with those though), however I'm not sure. Any suggestions?
  7. http://www.chami.com/html-kit/ (HTML-Kit) http://www.chami.com/html-kit/plugins/ (Plugins for HTML-Kit -- very useful :D)
×
×
  • 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.