User Michal Kopanski - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:29:58Z http://stackoverflow.com/feeds/user/132624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query 0 What's wrong with my SQL query? Michal Kopanski 2009-12-04T04:48:07Z 2009-12-04T08:31:04Z <p>Hi guys, I need a quick look at my SQL query. It's already given me a headache. Comparing some advice I have gotten, I could not figure out the proper format for my SQL.</p> <p>This is my code:</p> <pre><code>$query = "INSERT INTO `[my_db_name]`.`members` (`id` ,`first` ,`last` ,`add1` ,`add2` ,`phone_home` ,`phone_cell` ,`phone_dad` ,`phone_mom` ,`email1` ,`email2`) VALUES ('NULL' , '".$first."', '".$last."', '".$add1."', '".$add2."', '".$phone_home."', '".$phone_cell."', '".$phone_dad."', '".$phone_mom."', '".$email1."', '".$email2."')"; `mysql_query($query) or die ('Error updating database, Error:' . mysql_error()); </code></pre> <p>Thanks in advance!</p> <p><strong>EDIT:</strong></p> <p>Currently I have this as the form:</p> <pre><code>&lt;table border="0" cellpadding="0" cellspacing="0"&gt; &lt;form enctype="multipart/form-data" method="POST" action="add-member.php"&gt; &lt;tr class="labels"&gt; &lt;td class="f"&gt;Add a Member&lt;/td&gt; &lt;td class="l"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="first"&gt;First Name:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="first" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="last"&gt;Last Name:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="last" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="add1"&gt;Address 1:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="add1" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="add2"&gt;Address 2:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="add2" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="phone_home"&gt;Home Phone:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="phone_home" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="phone_cell"&gt;Cell Phone:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="phone_cell" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="phone_dad"&gt;Dad Cell:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="phone_dad" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="phone_mom"&gt;Mom Cell:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="phone_mom" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="email1"&gt;Email 1:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="email1" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="f"&gt;&lt;label for="email2"&gt;Email 2:&lt;/label&gt;&lt;/td&gt; &lt;td class="l"&gt;&lt;input id="email2" type="text"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>This is the insert query:</p> <pre><code>&lt;?php $first = $_POST['first']; $last = $_POST['last']; $add1 = $_POST['add1']; $add2 = $_POST['add2']; $phone_home = $_POST['phone_home']; $phone_cell = $_POST['phone_cell']; $phone_dad = $_POST['phone_dad']; $phone_mom = $_POST['phone_mom']; $email1 = $_POST['email1']; $email2 = $_POST['email2']; include ("../lib/login.php"); mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); mysql_select_db ([dbname]); $query = "INSERT INTO `[dbname]`.`mem_dir` (`id` ,`first` ,`last` ,`add1` ,`add2` ,`phone_home` ,`phone_cell` ,`phone_dad` ,`phone_mom` ,`email1` ,`email2`) VALUES (NULL , '$first', '$last', '$add1', '$add2', '$phone_home', '$phone_cell', '$phone_dad', '$phone_mom', '$email1', '$email2')"; mysql_query($query) or die ('Error updating database, Error:' . mysql_error()); echo "Database successfully uploaded with:&lt;br/&gt;&lt;ul&gt; &lt;li&gt;" . $first . "&lt;/li&gt; ... &lt;/ul&gt;"; ?&gt; </code></pre> <p>Seems to submit the entry, but not the values... I'm tired of looking at it and not seeing it. I appreciate all the help. Thanks!</p> <p><strong>EDIT (AGAIN):</strong></p> <p>As was pointed out by <a href="http://stackoverflow.com/users/87015/salman-a">Salman A</a>, the problem was in fact the form, and the fact that each input was identified with an "id", instead of a "name".</p> <p>Thanks everyone, I really appreciate all the help! I guess my incorrect SQL formatting is another topic, eh?</p> http://stackoverflow.com/questions/1740071/how-to-animate-one-child-but-not-others-using-jquery/1740930#1740930 0 Answer by Michal Kopanski for How to animate one child but not others using jQuery? Michal Kopanski 2009-11-16T09:01:35Z 2009-11-16T09:01:35Z <p>Hey everyone, after doing some more research, I figured it out. I knew from the beginning that the reason the other objects were animated because the classes were shared throughout. The way to avoid that is to target only the child of the element we clicked using the jQuery child selector <code>$(this).children()</code>. You can see the functional demo <a href="http://projects.michalkopanski.com/PHOTOPortfolio/v2/" rel="nofollow" title="here">here</a>. My code looks like this:</p> <pre><code>$(document).ready(function(){ $('.featured-img').toggle( function() { $(this).animate({ height: "593px", marginTop: "-100px" }, 500 ); $(this).children().animate({ marginTop: "0px" }, 500 ); }, function() { $(this).animate({ height: "150px", marginTop: "100px" }, 1500 ); $(this).children().animate({ marginTop: "-200px" }, 1500 ); } ); }); </code></pre> <p>I hope you guys have learned something new. Thanks for all those who helped.</p> http://stackoverflow.com/questions/1740071/how-to-animate-one-child-but-not-others-using-jquery 0 How to animate one child but not others using jQuery? Michal Kopanski 2009-11-16T04:37:43Z 2009-11-16T09:01:35Z <p>Hey guys, I have written this code from the ground up using jQuery (first real jQuery project), and so far, I have some toggle animation. My code looks like this:</p> <p><strong>HTML</strong></p> <pre><code>&lt;div id="content"&gt; &lt;div class="featured-img one"&gt; &lt;img src="media/desktopography.png" alt="Desktopography"/&gt; &lt;/div&gt;&lt;!-- end .featured-img --&gt; &lt;div class="featured-img two"&gt; &lt;img src="media/dancer.png" alt="Dancer"/&gt; &lt;/div&gt;&lt;!-- end .featured-img --&gt; &lt;div class="featured-img three"&gt; &lt;img src="media/tech.png" alt="Tech"/&gt; &lt;/div&gt;&lt;!-- end .featured-img --&gt; &lt;div class="featured-img four"&gt; &lt;img src="media/strawberry-tree.png" alt="Strawberry Tree"/&gt; &lt;/div&gt;&lt;!-- end .featured-img --&gt; &lt;div class="featured-img five"&gt; &lt;img src="media/snow-leopard.png" alt="Snow Leopard"/&gt; &lt;/div&gt;&lt;!-- end .featured-img --&gt; &lt;/div&gt;&lt;!-- end #content --&gt; </code></pre> <p><strong>jQuery</strong></p> <pre><code>$(document).ready(function(){ $('.featured-img').toggle( function() { $(this).animate({ height: "600px", marginTop: "-100px" }, 500 ); $(".featured-img &gt; img").animate({ marginTop: "0px" }, 500 ); }, function() { $(this).animate({ height: "150px", marginTop: "100px" }, 1500 ); $(".featured-img &gt; img").animate({ marginTop: "-200px" }, 1500 ); } ); }); </code></pre> <p>This works fine with one element, BUT it applies the same animation to every element assigned .featured-img on each click. Is there any way I can only animate the element I clicked, without disturbing the other ones at all?</p> <p>I have tried playing with :not(:animated), and other stuff, but it only made it worse. I would appreciate any help or suggestions.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1611643/why-does-mysql-insert-3-values-instead-of-1 1 Why does MySQL insert 3 values instead of 1? Michal Kopanski 2009-10-23T06:14:52Z 2009-10-23T06:29:10Z <p>Hey guys, I am having trouble with what <em>seems</em> to be fairly easy. Let me tell you what I'm trying to do, and then I will paste in my commented code.</p> <p>I am trying to:</p> <ol> <li>Connect to MySQL</li> <li>Insert an incrementing value (the id)</li> <li>Temporarily store that value [i used <code>mysql_insert_id()</code>]</li> <li>Upload and resize an image using the class.upload.php and give it the name using the last inserted id</li> <li>Show the uploaded file, and allow user to jcrop it into a thumbnail</li> </ol> <p><strong>This is where all hell breaks loose.</strong></p> <ol> <li>Store the thumbnail also giving it the name using the last inserted id</li> </ol> <p><strong>What I think actually happens is:</strong></p> <p>The INSERT query repeats for every step (upload, jcrop, and thumbnail display) and so it inserts 3 values. So what happens is it gives the [initially] uploaded image name of 3, but looks for image 4 to create the thumbnail from, then the page that shows the error (which is supposed to show me the thumbnail) inserts another row into MySQL. After all that happens, the next time I want to upload an image, it gives the initial upload id of 6.</p> <p>I have been going crazy, trying to use different methods of inserting the row, but it seems the filename doesn't get passed through to each of the steps using any other method. I have tried using:</p> <ul> <li><p>include_once method to insert the row</p></li> <li><p>splitting the process into 2 pages, where t the firstpage inserts a row, then POSTs it using hidden field</p></li> <li>moving the mysql insert into one of the other steps (doesnt pass the last id into any other step)</li> </ul> <p><hr /></p> <p><strong>Here is my code:</strong></p> <pre><code>&lt;?php //connect to MySQL $dbname = "****"; $username = "****"; $password = "****"; $hostname = "localhost"; //connection to the database $dbhandle = mysql_connect($hostname, $username, $password) or die("&lt;br/&gt;&lt;h1&gt;Unable to connect to MySQL, please contact support at support@michalkopanski.com&lt;/h1&gt;"); //select a database to work with $selected = mysql_select_db($dbname, $dbhandle) or die("Could not select database."); //insert an auto_incrementing value into the 'pictures' table if (!$result = mysql_query("INSERT INTO `pictures` VALUES ('')")) echo 'mysql error: '.mysql_error(); $filename = mysql_insert_id(); ?&gt; &lt;?php //submit coordinates of jcrop preview if ($_POST['submit_coords']) { $targ_w = 180; // desired width of thumbnail $targ_h = 60; // desired height of thumbnail $jpeg_quality = 90; // desired jpeg quality $src = 'f/'.$filename.'.jpg'; // get path to the resized image // Fetch the uploaded jpeg file $img_r = imageCreateFromJpeg($src); //Use these proportions $dst_r = ImageCreateTrueColor( $targ_w, $targ_h ); // Get coordinates from jcop, and create thumbnail imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'], $targ_w,$targ_h,$_POST['w'],$_POST['h']); // save the thumbnail and echo the result $output_file = 't/'.$filename.'.jpg'; imagejpeg($dst_r, $output_file, $jpeg_quality); $results = &lt;&lt;&lt;EOT &lt;img src="t/$filename.jpg"/&gt; EOT; echo $results; die(); } // upload &amp; resize mig image if ($_POST['upload_image'] &amp;&amp; $_FILES['image_upload']) { require_once '../lib/jcrop/class.upload.php'; $ih = new Upload($_FILES['image_upload']); if ($ih-&gt;uploaded) { //save full size $ih-&gt;file_new_name_body = $filename; $ih-&gt;file_new_name_ext = 'jpg'; $ih-&gt;image_resize = true; $ih-&gt;image_x = 860; $ih-&gt;image_ratio_y = true; $ih-&gt;process('f/'); if ($ih-&gt;processed) { $x = $ih-&gt;image_dst_x; $y = $ih-&gt;image_dst_y; echo 'image resized'; $ih-&gt;clean(); } else { echo 'error : ' . $ih-&gt;error; } } //if succesful show the thumbnail preview $output = &lt;&lt;&lt;EOT &lt;img src="f/$filename.jpg" id="jcrop" /&gt; &lt;br /&gt; &lt;div style="overflow: hidden; width: 180px; height: 60px;"&gt; &lt;img src="f/$filename.jpg" id="preview" /&gt; &lt;/div&gt; EOT; // Show uploaded image, and allow jcrop $head = &lt;&lt;&lt;EOT &lt;link rel="stylesheet" href="../lib/jcrop/jquery.Jcrop.css" type="text/css" /&gt; &lt;script type="text/javascript" src="../lib/jcrop/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="../lib/jcrop/jquery.Jcrop.min.js"&gt;&lt;/script&gt; &lt;script&gt; $(function(){ function showPreview(coords) { var rx = 180 / coords.w; var ry = 60 / coords.h; $('#preview').css({ width: Math.round(rx * $x) + 'px', height: Math.round(ry * $y) + 'px', marginLeft: '-' + Math.round(rx * coords.x) + 'px', marginTop: '-' + Math.round(ry * coords.y) + 'px' }); }; function insertCoords(c) { $('#x').val(c.x); $('#y').val(c.y); $('#x2').val(c.x2); $('#y2').val(c.y2); $('#w').val(c.w); $('#h').val(c.h); }; $('#jcrop').Jcrop({ onChange: showPreview, onSelect: insertCoords, aspectRatio: 3 }); }); &lt;/script&gt; EOT; } ?&gt; &lt;html&gt; &lt;head&gt; &lt;?php if ($head) echo $head; ?&gt; &lt;/head&gt; &lt;body&gt; &lt;?php if (!$head) : ?&gt; &lt;form action="" method="POST" enctype="multipart/form-data"&gt; &lt;input type="file" name="image_upload" /&gt; &lt;input type="submit" name="upload_image" value="click me" /&gt; &lt;/form&gt; &lt;?php else : ?&gt; &lt;form action="" method="POST"&gt; &lt;input type="hidden" name="x" id="x" /&gt; &lt;input type="hidden" name="y" id="y" /&gt; &lt;input type="hidden" name="x2" id="x2" /&gt; &lt;input type="hidden" name="y2" id="y2" /&gt; &lt;input type="hidden" name="w" id="w" /&gt; &lt;input type="hidden" name="h" id="h" /&gt; &lt;input type="hidden" name="filename" id="filename" value="&lt;?php echo $filename ?&gt;" /&gt; &lt;input type="submit" name="submit_coords" value="gogo" /&gt; &lt;/form&gt; &lt;?php endif; ?&gt; &lt;?php if ($output) echo $output; ?&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Please, please, if you could help in any way, or at least suggest an alternative solution, I would greatly appreciate it.</p> <p>Thank you so much in advance.</p> http://stackoverflow.com/questions/1077859/how-to-show-hide-input-value-on-focus 0 How to show/hide input value on focus? Michal Kopanski 2009-07-03T05:15:51Z 2009-10-07T03:56:10Z <p>I see this all over the web, but was wondering if anyone has the JavaScript code for the EASIEST way to show input value on blur, but hide in on focus.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1077859/how-to-show-hide-input-value-on-focus/1528942#1528942 1 Answer by Michal Kopanski for How to show/hide input value on focus? Michal Kopanski 2009-10-07T00:47:40Z 2009-10-07T03:56:10Z <p>This answer was adopted from <a href="http://stackoverflow.com/users/54420/josh-stodola">Josh Stodola</a>, but was slightly modified to do the following:</p> <ul> <li>Show/Hide Value in Username</li> <li>Show/Hide Value in Password (You will see how and why...)</li> <li>Swap input type from 'text' to 'password'</li> </ul> <p><strong>My code looks like this:</strong></p> <pre><code>window.onload = function() { applyDefaultValue(document.getElementById('txtUser'), 'Username'); applyPasswordType(document.getElementById('txtPass'), 'Password', 'text'); } function applyDefaultValue(elem, val) { elem.style.color = '#777'; elem.value = val; elem.onfocus = function() { if(this.value == val) { this.style.color = ''; this.value = ''; //On focus, make blank } } elem.onblur = function() { if(this.value == '') { this.value = val; //If it's not in focus, use declared value } } } function applyPasswordType(elem, val, typ) { elem.style.color = '#777'; elem.value = val; elem.type = typ; elem.onfocus = function() { if(this.value == val) { this.style.color = ''; this.type = 'password'; //If in focus, input type will be 'password' this.value = ''; } } elem.onblur = function() { if(this.value == '') { this.value = val; this.type = 'text'; //On blur, input type will be 'text' in order to show value } } } </code></pre> <p>Not sure if this is the safest or the correct way to do it, but it sure looks nice! Check it out <a href="http://percussionscholars.com/admin/login.php" rel="nofollow">here</a>.</p> <p>If you know of a better and/or safer way, please let me know!</p> <p>Thanks, in advance, and of course thanks to Josh Stodola for the code. :)</p> http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql 3 PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:13:00Z 2009-09-23T10:56:03Z <p>For some reason, JavaScript/PHP wont delete my data from MySQL! Here is the rundown of the problem.</p> <p><hr /></p> <p>I have an array that displays all my MySQL entries in a nice format, with a button to delete the entry for each one individually. It looks like this:</p> <pre><code>&lt;?php include("login.php"); //connection to the database $dbhandle = mysql_connect($hostname, $username, $password) or die("&lt;br/&gt;&lt;h1&gt;Unable to connect to MySQL, please contact support at support@michalkopanski.com&lt;/h1&gt;"); //select a database to work with $selected = mysql_select_db($dbname, $dbhandle) or die("Could not select database."); //execute the SQL query and return records if (!$result = mysql_query("SELECT `id`, `url` FROM `videos`")) echo 'mysql error: '.mysql_error(); //fetch tha data from the database while ($row = mysql_fetch_array($result)) { ?&gt; &lt;div class="video"&gt;&lt;a class="&lt;?php echo $row{'id'}; ?&gt;" href="http://www.youtube.com/watch?v=&lt;?php echo $row{'url'}; ?&gt;"&gt;http://www.youtube.com/watch?v=&lt;?php echo $row{'url'}; ?&gt;&lt;/a&gt;&lt;a class="del" href="javascript:confirmation(&lt;? echo $row['id']; ?&gt;)"&gt;delete&lt;/a&gt;&lt;/div&gt; &lt;?php } //close the connection mysql_close($dbhandle); ?&gt; </code></pre> <p>The delete button has an href of <code>javascript:confirmation(&lt;? echo $row['id']; ?&gt;)</code> , so once you click on delete, it runs this:</p> <pre><code>&lt;script type="text/javascript"&gt; &lt;!-- function confirmation(ID) { var answer = confirm("Are you sure you want to delete this video?") if (answer){ alert("Entry Deleted") window.location = "delete.php?id="+ID; } else{ alert("No action taken") } } //--&gt; &lt;/script&gt; </code></pre> <p>The JavaScript should theoretically pass the 'ID' onto the page delete.php. That page looks like this (and I think this is where the problem is):</p> <pre><code>&lt;?php include ("login.php"); mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); mysql_select_db ($dbname) or die("Unable to connect to database"); mysql_query("DELETE FROM `videos` WHERE `videos`.`id` ='.$id.'"); echo ("Video has been deleted."); ?&gt; </code></pre> <p>If there's anyone out there that may know the answer to this, I would greatly appreciate it. I am also opened to suggestions (for those who aren't sure).</p> <p>Thanks!</p> http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql/1464006#1464006 0 Answer by Michal Kopanski for PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:45:00Z 2009-09-23T04:45:00Z <p>Thanks everyone. I used <a href="http://stackoverflow.com/users/138475/pascal-martin">Pascal MARTIN's</a> answer, and it comes to show that I was missing the request (<code>$_GET</code>) to get the 'id' from the precious page, and that some of my query was incorrect.</p> <p>Here is the working copy:</p> <pre><code>&lt;?php include ("login.php"); $id = $_GET['id']; mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); mysql_select_db ($dbname) or die("Unable to connect to database"); mysql_query("DELETE FROM `videos` WHERE `videos`.`id` = $id "); echo ("Video ".$id." has been deleted."); ?&gt; </code></pre> <p>Thanks again!</p> http://stackoverflow.com/questions/1101822/css-problem-with-float-property/1108293#1108293 0 Answer by Michal Kopanski for CSS: problem with Float property Michal Kopanski 2009-07-10T08:00:14Z 2009-07-10T08:00:14Z <p>Please try getting rid of "min-height" in the '.listcol'. Also, get rid og the "position: absolute" in the '.listcol'.</p> <p>Let me know if that worked.</p> <p>If it doesn't, you can try to modify your HTML to be in columns, so for example:</p> <pre><code>&lt;div class="column"&gt; &lt;div class="box"&gt;&lt;/div&gt; &lt;div class="box"&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="column"&gt; &lt;div class="box"&gt;&lt;/div&gt; &lt;div class="box"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>And the CSS:</p> <pre><code>.column{ float: left; width: 200px; margin-right: 5px; } .box{ margin: 0px; } </code></pre> http://stackoverflow.com/questions/1101822/css-problem-with-float-property/1102312#1102312 0 Answer by Michal Kopanski for CSS: problem with Float property Michal Kopanski 2009-07-09T07:20:45Z 2009-07-09T07:20:45Z <p>Please give the link to your site (the page with the problem), and I will solve this issue for you.</p> http://stackoverflow.com/questions/1081627/how-to-read-display-xml-using-php 1 How to read/display XML using PHP Michal Kopanski 2009-07-04T06:07:35Z 2009-07-04T06:11:37Z <p>Is there a way to read off from an [external] xml (an xml file from a different website) using PHP? I know there's a way to read XML using JavaScript, but only if they are both in the same root.</p> <p>Could you provide an example on how to source the xml file, then read the following:</p> <pre><code>&lt;parent&gt; &lt;child&gt; &lt;grandchild&gt;Example Text 1&lt;/grandchild&gt; &lt;/child&gt; &lt;child&gt; &lt;grandchild&gt;Example Text 2&lt;/grandchild&gt; &lt;/child&gt; &lt;/parent&gt; </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query Comment by Michal Kopanski on What's wrong with my SQL query? Michal Kopanski 2009-12-04T09:15:13Z 2009-12-04T09:15:13Z Sorry, but I couldn't find an <code>echo $query;</code> in my code, and is there any way to prevent that? It would be nice to know a way around it. Thanks! http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query/1845327#1845327 Comment by Michal Kopanski on What's wrong with my SQL query? Michal Kopanski 2009-12-04T08:27:53Z 2009-12-04T08:27:53Z Thank you sooooo much!!! I can't believe I put id's instead of names! I am so glad that StackOverflow has made this possible. Thanks again! http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query Comment by Michal Kopanski on What's wrong with my SQL query? Michal Kopanski 2009-12-04T05:35:06Z 2009-12-04T05:35:06Z Removed the quotes around table and database name, but still same results. Thanks for the suggestion though. http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query/1844940#1844940 Comment by Michal Kopanski on What's wrong with my SQL query? Michal Kopanski 2009-12-04T05:21:22Z 2009-12-04T05:21:22Z fixed that, still doesn't work. =/ http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query/1844955#1844955 Comment by Michal Kopanski on What's wrong with my SQL query? Michal Kopanski 2009-12-04T05:04:26Z 2009-12-04T05:04:26Z There's no actual error, the values simply aren't submitted, but the entry is. I will edit the question with the form, and all the stuff. http://stackoverflow.com/questions/1844922/whats-wrong-with-my-sql-query Comment by Michal Kopanski on What's wrong with my SQL query? Michal Kopanski 2009-12-04T05:00:11Z 2009-12-04T05:00:11Z If you're referring to [my_db_name], I don't actually have that in my SQL, that's just to display here. http://stackoverflow.com/questions/1740071/how-to-animate-one-child-but-not-others-using-jquery/1740089#1740089 Comment by Michal Kopanski on How to animate one child but not others using jQuery? Michal Kopanski 2009-11-16T06:17:26Z 2009-11-16T06:17:26Z @meder: I'm sorry, but the code you suggested doesn't work. Unfortunately, I'm an absolute beginner when it comes to jQuery, and don't exactly understand where I would use .each, would it be in the place of &quot;this&quot;? Thanks. http://stackoverflow.com/questions/1740071/how-to-animate-one-child-but-not-others-using-jquery Comment by Michal Kopanski on How to animate one child but not others using jQuery? Michal Kopanski 2009-11-16T06:07:30Z 2009-11-16T06:07:30Z @Frank DeRosa: I have added the HTML to the question, and the work in progress can be found here: <a href="http://projects.michalkopanski.com/PHOTOPortfolio/v2/" rel="nofollow">projects.michalkopanski.com/PHOTOPortfolio/v2/&hellip;</a> . Also, how much harder would it be for only one element to be open at a time? @beggs: Sorry for not being clear on this, I would like for only ONE element to move, and the others stay still, and that would be the element I click. Thanks to the both of you. http://stackoverflow.com/questions/1611643/why-does-mysql-insert-3-values-instead-of-1/1611667#1611667 Comment by Michal Kopanski on Why does MySQL insert 3 values instead of 1? Michal Kopanski 2009-10-23T06:37:46Z 2009-10-23T06:37:46Z It worked!!! Oh, words can't express how much weight that just dropped off my shoulders. This things' deadline is in a couple of hours! If you'd like to see a demo of how it works, please let me know, and I'd be happy to show you. Also if you would like a zip of the files, I'll send that too. It's actually rather cool and original! Once again, thanks so much, you're a life savor! http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql Comment by Michal Kopanski on PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:39:33Z 2009-09-23T04:39:33Z @harto: Yea, I would usually do that, but I was so frustrated that it didn't even cross my mind. It's been screwing with me for a good 30 minutes! @MitMaro: Thank you! I appreciate it, and I hope other readers can learn something from this question. http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql/1463925#1463925 Comment by Michal Kopanski on PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:26:12Z 2009-09-23T04:26:12Z okay, so i don't how to add code into comments, here is a last attempt: &lt;code&gt;mysql_query(&quot;DELETE FROM <code>videos</code> WHERE <code>videos</code>.<code>id</code> = $id &quot;);&lt;/code&gt; http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql/1463925#1463925 Comment by Michal Kopanski on PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:25:36Z 2009-09-23T04:25:36Z sorry, it got all screwed up, here it is: mysql_query(&quot;DELETE FROM <code>videos</code> WHERE <code>videos</code>.<code>id</code> = $id &quot;); http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql/1463925#1463925 Comment by Michal Kopanski on PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:25:02Z 2009-09-23T04:25:02Z Thanks, you were on the right track, but the query wasn't working, even with the $_GET request. The correct query was <code>mysql&#95;query(&quot;DELETE FROM `videos</code> WHERE <code>videos</code>.<code>id</code> = $id &quot;);` http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql/1463930#1463930 Comment by Michal Kopanski on PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:23:50Z 2009-09-23T04:23:50Z Thanks, I got it working now! http://stackoverflow.com/questions/1463909/php-will-not-delete-from-mysql/1463920#1463920 Comment by Michal Kopanski on PHP will not delete from MySQL Michal Kopanski 2009-09-23T04:22:53Z 2009-09-23T04:22:53Z Sweet! It worked! Thank you! =]