User Peter Stuifzand - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:41:44Z http://stackoverflow.com/feeds/user/1633 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1845776/regex-to-remove-commented-portion-of-code-lines-tags-in-html-or-xhtml-page/1846048#1846048 0 Answer by Peter Stuifzand for RegEx to remove commented portion of code/lines/Tags in HTML or XHTML page Peter Stuifzand 2009-12-04T10:13:54Z 2009-12-04T10:13:54Z <p>How about</p> <pre><code>str = str.ReplaceAll('&lt;!--loop output-------end--&gt;', ''); </code></pre> http://stackoverflow.com/questions/1845981/how-to-stop-apache-from-listing-the-contents-of-my-user-directories/1846022#1846022 1 Answer by Peter Stuifzand for How to stop Apache from listing the contents of my user directories Peter Stuifzand 2009-12-04T10:07:51Z 2009-12-04T10:07:51Z <p>There is a command in Apache that will make it show indexes.</p> <pre><code>Options +Indexes </code></pre> <p>Remove this, restart. This will make that url show a 403 Forbidden.</p> http://stackoverflow.com/questions/1791089/not-your-usual-mysql4-odbc-connection-issue/1840564#1840564 0 Answer by Peter Stuifzand for Not your usual MySQL4 + ODBC connection issue... Peter Stuifzand 2009-12-03T15:21:42Z 2009-12-03T15:21:42Z <p>You need to give permissions to the user you want to connect with. Use the <a href="http://dev.mysql.com/doc/refman/4.1/en/grant.html" rel="nofollow">GRANT</a> statement.</p> http://stackoverflow.com/questions/1738785/handling-of-server-side-http-4nn-5nn-errors-in-jquerys-ajax-requests/1839522#1839522 0 Answer by Peter Stuifzand for Handling of server-side HTTP 4nn/5nn errors in jQuery's ajax requests Peter Stuifzand 2009-12-03T12:07:15Z 2009-12-03T12:07:15Z <p>I think it's better to give a short message instead completely rewriting your page. That way it won't interfere much with the page itself. Google Reader and Gmail do something like this. Reader shows the message and doesn't mark your items read, but you can still read all the loaded posts.</p> http://stackoverflow.com/questions/1838783/time-of-day-script/1839477#1839477 0 Answer by Peter Stuifzand for Time of day script Peter Stuifzand 2009-12-03T11:55:45Z 2009-12-03T11:55:45Z <p>No fix for your program, but this line</p> <pre><code>$jsdate = (date("Y"). "-" .date("m"). "-" .date("d"). "-16-30"); </code></pre> <p>could just as easy be</p> <pre><code>$jsdate = date("Y-m-d-16-30"); </code></pre> <p>It's a lot more readable.</p> http://stackoverflow.com/questions/643666/stylecop-for-other-languages/1839457#1839457 0 Answer by Peter Stuifzand for StyleCop for other languages Peter Stuifzand 2009-12-03T11:50:59Z 2009-12-03T11:50:59Z <p>For Perl there is a tool called <code>perlcritic</code>.</p> http://stackoverflow.com/questions/1839403/how-do-i-align-a-label-and-a-textarea/1839417#1839417 3 Answer by Peter Stuifzand for How do I align a label and a textarea? Peter Stuifzand 2009-12-03T11:40:26Z 2009-12-03T11:40:26Z <p>Use <code>vertical-align:middle</code> in your CSS.</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td style="vertical-align:middle"&gt;Description:&lt;/td&gt; &lt;td&gt;&lt;textarea&gt;&lt;/textarea&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> http://stackoverflow.com/questions/1826474/inserting-chinese-meta-tags/1826491#1826491 0 Answer by Peter Stuifzand for Inserting Chinese Meta Tags Peter Stuifzand 2009-12-01T14:23:03Z 2009-12-01T14:23:03Z <p>It could be that you need to encode the Chinese characters to HTML entities, or specify a character set.</p> http://stackoverflow.com/questions/1819534/get-url-from-html-code-using-regex/1819624#1819624 0 Answer by Peter Stuifzand for Get url from html code using Regex Peter Stuifzand 2009-11-30T12:44:25Z 2009-12-01T14:21:42Z <p>The simplest way to do this is using the following regex.</p> <pre><code>/href="([^"]+)"/ </code></pre> <p>This will get all characters from the first quote until it find a character that is a quote. This is in most languages the fastest way to get a quoted string, that can't itself contain quotes. Quotes should be encoded when used in attributes.</p> <p><strong>UPDATE</strong>: A complete Perl program for parsing urls would look like this:</p> <pre><code>use 5.010; while (&lt;&gt;) { push @matches, m/href="([^"]+)"/gi; push @matches, m/href='([^']+)'/gi; push @matches, m/href=([^"'][^&gt;\s]*)[&gt;\s]+/gi; say for @matches; } </code></pre> <p>It reads from stdin and prints all urls. It takes care of the three possible quotes. Use it with <code>curl</code> to find all the urls in a webpage:</p> <pre><code>curl url | perl urls.pl </code></pre> http://stackoverflow.com/questions/1819980/what-design-pattern-would-you-consider-is-most-important-to-use/1820002#1820002 0 Answer by Peter Stuifzand for What design pattern would you consider is most important to use? Peter Stuifzand 2009-11-30T14:00:10Z 2009-11-30T14:00:10Z <p>This always depends on the problem you're trying to solve.</p> http://stackoverflow.com/questions/1819967/is-using-package-inside-my-methods-bad-for-inheritance/1819989#1819989 3 Answer by Peter Stuifzand for Is using __PACKAGE__ inside my methods bad for inheritance? Peter Stuifzand 2009-11-30T13:59:00Z 2009-11-30T13:59:00Z <p>That depends. Sometimes <code>__PACKAGE__-&gt;method()</code> is exactly what you need. </p> <p>Otherwise it's better to use <code>ref($self)-&gt;class_method()</code> or <code>$self-&gt;method()</code>.</p> http://stackoverflow.com/questions/1819534/get-url-from-html-code-using-regex/1819646#1819646 1 Answer by Peter Stuifzand for Get url from html code using Regex Peter Stuifzand 2009-11-30T12:49:55Z 2009-11-30T12:49:55Z <p>If you want to use jQuery you can do the following.</p> <pre><code>$('a').attr('href') </code></pre> http://stackoverflow.com/questions/1819563/php-file-upload-files-disappearing-from-tmp-before-moveuploadedfiles/1819586#1819586 0 Answer by Peter Stuifzand for PHP File Upload, files disappearing from /tmp before move_uploaded_files Peter Stuifzand 2009-11-30T12:39:25Z 2009-11-30T12:39:25Z <p>Your <code>form</code> should use a tag like this:</p> <pre><code>&lt;form method="post" enctype="multipart/form-data" action="..."&gt; </code></pre> <p>Use <code>multiple/form-data</code> as <code>enctype</code>.</p> http://stackoverflow.com/questions/1773865/vim-spell-options/1819521#1819521 0 Answer by Peter Stuifzand for Vim Spell options Peter Stuifzand 2009-11-30T12:25:31Z 2009-11-30T12:25:31Z <p>It seems this should work: <a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.editors/2008-09/msg00049.html" rel="nofollow">http://newsgroups.derkeiler.com/Archive/Comp/comp.editors/2008-09/msg00049.html</a></p> http://stackoverflow.com/questions/1819398/php-remove-part-of-string-from-another-string/1819478#1819478 1 Answer by Peter Stuifzand for PHP - Remove part of string from another string Peter Stuifzand 2009-11-30T12:18:03Z 2009-11-30T12:18:03Z <p>The problem is that your input parameters don't make a difference between values and functions. You need to find a way to make that difference obvious to your function. I expect you use your function like this:</p> <pre><code>insertQuery(array('name'=&gt;'John', 'age' =&gt; 43), 'person'); </code></pre> <p>How about something like this:</p> <pre><code>insertQuery( array( 'name' =&gt; 'John', 'age' =&gt; 43, 'prevId' =&gt; array('LAST_INSERT_ID()') ), 'person'); function insertQuery($data, $table) { $keys = array_keys($data); $sql = "INSERT INTO `" . $table . "` (`" . implode('`, `', $keys) . "`) VALUES "; $values = array_values($data); $sqlparams = array(); foreach ($values as $val) { if (is_array($val)) { $val = $val[0]; } else { # Escape and quote $val = '"' . mysql_real_escape_string($val) . '"'; } $sqlparams[] = $val; } $sql .= "(" . implode(", ", $sqlparams) . ");"; return $sql; } </code></pre> <p>I also included two bugfixes:</p> <ol> <li>Without <code>mysql_real_escape_string</code> quoting is always wrong. A quote in your parameter will mess up your whole SQL query.</li> <li>Added quotes around the table and the keys. This way you won't get errors for table and field names that are also keywords in SQL.</li> </ol> http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1793732#1793732 -2 Answer by Peter Stuifzand for C++ dynamic allocated array Peter Stuifzand 2009-11-24T23:38:38Z 2009-11-30T11:56:42Z <p>There is a lot to be said for knowing how to solve problems, but this isn't one of them.</p> <pre><code>#include &lt;vector&gt; #include &lt;iostream&gt; int main() { std::vector&lt;int&gt; numbers; for (int i = 0; i &lt; 11; i++) { numbers.push_back(i); } for (int i = 0; i &lt; numbers.size(); i++) { std::cout &lt;&lt; numbers[i] &lt;&lt; ". "; } std::cout &lt;&lt; "\n"; } </code></pre> <p><strong>UPDATE</strong>: As shown above in <a href="http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1796116#1796116">my other answer</a> his function contains at least four bugs in 16 lines. That is a bug for every four lines of code. And then there are the problems with the design of the code. For example the size of the array and the array itself should be together. You can't otherwise guarantee that the function works. </p> <p>Two of the problems in the code (2,4) could be solved by using a <code>struct</code> containing the array pointer and the max_size of the data structure. That way you have to pass the two variables together.</p> http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1796116#1796116 1 Answer by Peter Stuifzand for C++ dynamic allocated array Peter Stuifzand 2009-11-25T10:48:07Z 2009-11-25T10:57:18Z <p>There four problems with the implementation of your code:</p> <ol> <li>It doesn't copy the elements of the list.</li> <li>It doesn't assign the value of <code>new_list</code> to the <code>list</code> variable in <code>main</code></li> <li>It inserts values from the back to the front, instead of after the last value</li> <li><code>max_size</code> doesn't get updated. It's easy to miss this, because you only increase the size of the array by one each time. That way it would need to allocate each time a value is added. If you increase the new size by more then one it will still reallocate every time.</li> </ol> <p>The first problem can be fixed by changing the for loop in <code>list_add</code> so it makes a copy:</p> <pre><code>for (int i = 0; i &lt; space_used; i++) { // this also changed. list_new[i] = list[i]; cout ... } // insert the new value (in the front?) list_new[max_size-space_used-1] = value; delete [] list; // Delete the list afterwards instead of earlier. </code></pre> <p>The second problem can by fixed by returning a pointer to the list. Change the <code>main</code> function to this:</p> <pre><code>for (int i = 0; i &lt; 11; i++) { list = list_add(list, used, N, i); } </code></pre> <p>The third problem can be fixed by changing this line</p> <pre><code>list_new[max_size-space_used-1] = value; </code></pre> <p>to</p> <pre><code>list_new[space_used++] = value; </code></pre> <p>You should also remove the <code>space_used++</code> after this.</p> <p>To see the fourth problem you should change this line</p> <pre><code>int new_max_size = space_used+1; </code></pre> <p>to </p> <pre><code>int new_max_size = space_used+3; </code></pre> <p>It will still reallocate every time. It should however reallocate only two times.</p> <p><hr></p> <p>This is the full code:</p> <pre><code>#include &lt;iostream&gt; using std::cout; using std::endl; int* list_add(int *list, int&amp; space_used, int&amp; max_size, int value) { if (max_size - space_used &gt; 0) { list[space_used++] = value; return list; } else { cout &lt;&lt; "Increasing size of array!" &lt;&lt; endl; int new_max_size = space_used+1; int *list_new = new int[new_max_size]; for (int i = 0; i &lt; space_used; i++) { list_new[i] = list[i]; cout &lt;&lt; list_new[i] &lt;&lt; ". "; } cout &lt;&lt; endl; list_new[space_used++] = value; max_size=new_max_size; delete [] list; return list_new; } } int main() { int N = 7; //declaring dynamic array allocation int* list = new int[N]; int used = 0, a_val; for (int i = 0; i &lt; 11; i++) { list=list_add(list, used, N, i); } cout &lt;&lt; endl &lt;&lt; "Storlek: " &lt;&lt; N &lt;&lt; endl &lt;&lt; endl; cout &lt;&lt; "Printar listan " &lt;&lt; endl; for (int i = 0; i &lt; used; i++) { cout &lt;&lt; list[i] &lt;&lt; ". "; } } </code></pre> http://stackoverflow.com/questions/1793833/sql-logic-two-tables-group-by/1793913#1793913 0 Answer by Peter Stuifzand for SQL logic: two tables (group by?) Peter Stuifzand 2009-11-25T00:23:57Z 2009-11-25T00:23:57Z <p>I don't think you need to have both this:</p> <pre><code>FROM mt AS mt st AS st </code></pre> <p>and this:</p> <pre><code>INNER JOIN sttable AS st on mt.ID = st.ID </code></pre> http://stackoverflow.com/questions/1793867/best-way-to-check-if-a-character-array-is-empty/1793880#1793880 2 Answer by Peter Stuifzand for Best way to check if a character array is empty Peter Stuifzand 2009-11-25T00:15:03Z 2009-11-25T00:15:03Z <p>This will work to find if a character array is empty. It probably is also the fastest.</p> <pre><code>if(text[0] == '\0') {} </code></pre> <p>This will also be fast if the <code>text</code> array is empty. If it contains characters it needs to count all the characters in it first.</p> <pre><code>if(strlen(text) == 0) {} </code></pre> http://stackoverflow.com/questions/1793218/ecommerce-stock-management-with-external-payment-gateway/1793418#1793418 1 Answer by Peter Stuifzand for ecommerce stock management with external payment gateway Peter Stuifzand 2009-11-24T22:37:33Z 2009-11-24T22:37:33Z <p>How about a more social solution instead of a technical one? Why not make it absolutely obvious that a ticket will become unlocked when you wait too long?</p> http://stackoverflow.com/questions/1793050/changing-web-content-based-on-browser-type/1793392#1793392 1 Answer by Peter Stuifzand for Changing web content based on browser type Peter Stuifzand 2009-11-24T22:32:38Z 2009-11-24T22:32:38Z <p>You could take a look at the UserAgent header in the HTTP request and redirect accordingly.</p> <p>In PHP that would be <code>$_SERVER['HTTP_USER_AGENT']</code>.</p> <p>You should however watch out that you don't write a lot of duplicate code when doing this.</p> http://stackoverflow.com/questions/1793257/how-can-i-solve-this-median-programming-problem-in-c/1793341#1793341 2 Answer by Peter Stuifzand for How can I solve this median programming problem in C++ Peter Stuifzand 2009-11-24T22:22:46Z 2009-11-24T22:22:46Z <p>I know no one asked for an answer using STL, but it could be useful for someone coming here later.</p> <p>In C++ with STL there is a function called <code>nth_element</code>, which takes three arguments. It will sort a container just enough to get nth element in the right spot.</p> <p>An example:</p> <pre><code>int numbers[] = { 5, 4, 2, 1, 10 }; std::nth_element(numbers, numbers+2, numbers+5); std::cout &lt;&lt; numbers[2] &lt;&lt; "\n"; </code></pre> http://stackoverflow.com/questions/1765279/perl-why-does-shift-lose-its-value-after-being-used/1793254#1793254 0 Answer by Peter Stuifzand for Perl - Why does shift lose its value after being used? Peter Stuifzand 2009-11-24T22:04:07Z 2009-11-24T22:04:07Z <p>Uses a core module, local variables and Perl 5.10.</p> <pre><code>use 5.010; use File::Basename; sub notify { my $ex_num = shift; my $name = basename($ex_num, '.txt'); say $name; } </code></pre> http://stackoverflow.com/questions/1793105/how-do-i-access-the-arrays-element-stored-in-my-hash-in-perl/1793132#1793132 1 Answer by Peter Stuifzand for How do I access the array's element stored in my hash in Perl? Peter Stuifzand 2009-11-24T21:45:02Z 2009-11-24T21:45:02Z <p>You have a few errors in your program:</p> <pre><code>my @my_array = ("aa" , "bbb"); $my_hash{"Kunjan"} = \@my_array; print $my_hash{"Kunjan"}[0]; </code></pre> <p>I made three changes:</p> <ol> <li>Added <code>my</code> in front of <code>@my_array</code> on the first line</li> <li>Change the <code>[...]</code> to <code>(...)</code> on the first line</li> <li>Add a <code>\</code> in front of @my_array on the second line</li> </ol> http://stackoverflow.com/questions/1776344/doubt-about-put-scripts-at-the-bottom-advice/1776352#1776352 1 Answer by Peter Stuifzand for Doubt about "Put SCRIPTs at the bottom" advice Peter Stuifzand 2009-11-21T18:46:52Z 2009-11-21T18:46:52Z <p>For example, in jQuery you can add an <code>ready()</code> event that will fire when the page is ready. This way you event can call functions that are loaded at the end of the file. This way is not very convoluted or difficult.</p> <p>I think there is benefit in placing the script tags at the end of the page, especially if the files you're trying to load are slow and so blocking the page.</p> http://stackoverflow.com/questions/1776306/what-kind-of-algorithms-have-shortened-running-time-for-longer-inputs/1776345#1776345 0 Answer by Peter Stuifzand for What kind of algorithms have shortened running time for longer inputs? Peter Stuifzand 2009-11-21T18:41:57Z 2009-11-21T18:41:57Z <p>This is useless example, but it would at least answer your question. For example a program that generates an alphabet a-z, based on the input. If you give it one letter it needs to generate 25 more letters, if you give a-y as input in only needs to generate one more. That way the program runs longer for smaller input and shorter for larger input.</p> http://stackoverflow.com/questions/1776312/how-to-check-the-presence-of-php-and-apache-on-ubuntu-server-through-ssh/1776329#1776329 1 Answer by Peter Stuifzand for How to check the presence of php and apache on ubuntu server through ssh Peter Stuifzand 2009-11-21T18:37:35Z 2009-11-21T18:37:35Z <p>Another way to find out if a program is installed is by using the <code>which</code> command. It will show the path of the program you're searching for. For example if when your searching for apache you can use the following command:</p> <pre><code>$ which apache2ctl /usr/sbin/apache2ctl </code></pre> <p>And if you searching for PHP try this:</p> <pre><code>$ which php /usr/bin/php </code></pre> http://stackoverflow.com/questions/1776291/function-names-in-c-capitalize-or-not/1776318#1776318 2 Answer by Peter Stuifzand for Function names in C++: Capitalize or not? Peter Stuifzand 2009-11-21T18:34:12Z 2009-11-21T18:34:12Z <p>It all depends on your definition of correct. There are many ways in which you can evaluate your coding style. Readability is an important one (for me). That is why I would use the <code>my_function</code> way of writing function names and variable names.</p> http://stackoverflow.com/questions/1564959/how-can-perl-share-global-variables-in-parallel-processing/1565001#1565001 1 Answer by Peter Stuifzand for How can Perl share global variables in parallel processing? Peter Stuifzand 2009-10-14T08:30:49Z 2009-10-14T08:30:49Z <p>If the program wasn't starting parallel processes, then the problem would be with the second </p> <pre><code>my $a = 0; </code></pre> <p>line. </p> <p>However, because you are starting parallel processes, each <code>$a</code> will be in it's memory space. That means each <code>$a</code> is a copy of the first <code>$a</code>. And the last first <code>$a</code> will never change, because of that.</p> <p>Getting a value from one process to another process takes a bit of interprocess communication. This can be done with <em>sockets</em> or <em>IPC</em>, or some other mechanism.</p> http://stackoverflow.com/questions/1505311/how-can-i-clean-up-misaligned-columns-in-text/1505390#1505390 2 Answer by Peter Stuifzand for How can I clean up misaligned columns in text? Peter Stuifzand 2009-10-01T17:40:59Z 2009-10-01T17:56:06Z <p>I wrote a small program that solves this problem using Perl. It also works for multiple columns.</p> <pre><code>#!/usr/bin/perl use strict; use warnings; my $sep = 2; sub max { my ($a,$b) = @_; return $a &gt; $b ? $a : $b; } my @rows; my $cols; my $max = 0; while (&lt;&gt;) { next if m/^\s*$/; my (@cols) = split m'\s+'; for (@cols) { $max = max($max, length); } $cols = @cols; push @rows, \@cols; } for (@rows) { my $str = join '', (('%-' . ($max+$sep) . 's') x $cols); $str .= "\n"; printf $str, @$_; } </code></pre> http://stackoverflow.com/questions/1839403/how-do-i-align-a-label-and-a-textarea/1839417#1839417 Comment by Peter Stuifzand on How do I align a label and a textarea? Peter Stuifzand 2009-12-03T13:05:27Z 2009-12-03T13:05:27Z The biggest reason that I use <code>&lt;p&gt;</code> is that it without styling already shows the way I want it. With <code>&lt;li&gt;</code> (and other) I need to have extra styling. http://stackoverflow.com/questions/1839403/how-do-i-align-a-label-and-a-textarea/1839417#1839417 Comment by Peter Stuifzand on How do I align a label and a textarea? Peter Stuifzand 2009-12-03T12:04:09Z 2009-12-03T12:04:09Z I use the following html for parts of a form: <code>&lt;p&gt;&lt;label&gt;Description:&lt;br&gt;&lt;textarea&gt;&lt;/textarea&gt;&lt;/label&gt;&lt;/p&gt;</code>. This way, when you click the <code>label</code> element it will focus the <code>textarea</code> element. It's not optimal yet, but I'm getting some nice results with this. http://stackoverflow.com/questions/1838783/time-of-day-script/1838908#1838908 Comment by Peter Stuifzand on Time of day script Peter Stuifzand 2009-12-03T11:58:04Z 2009-12-03T11:58:04Z I think the <code>strtotime</code> monday is the monday of this week, not the next monday. http://stackoverflow.com/questions/1839403/how-do-i-align-a-label-and-a-textarea/1839417#1839417 Comment by Peter Stuifzand on How do I align a label and a textarea? Peter Stuifzand 2009-12-03T11:45:06Z 2009-12-03T11:45:06Z You should write stuff like that in your question. http://stackoverflow.com/questions/1839403/how-do-i-align-a-label-and-a-textarea Comment by Peter Stuifzand on How do I align a label and a textarea? Peter Stuifzand 2009-12-03T11:38:57Z 2009-12-03T11:38:57Z Do you want the Description label in the middle? http://stackoverflow.com/questions/1831922/how-to-prevent-users-from-resizing-the-font-on-my-web-site Comment by Peter Stuifzand on How to prevent users from resizing the font on my web site? Peter Stuifzand 2009-12-02T10:12:40Z 2009-12-02T10:12:40Z What is the problem that you want to do that? http://stackoverflow.com/questions/1819534/get-url-from-html-code-using-regex/1821332#1821332 Comment by Peter Stuifzand on Get url from html code using Regex Peter Stuifzand 2009-12-01T12:35:49Z 2009-12-01T12:35:49Z Can you show an example of how this works? http://stackoverflow.com/questions/1819534/get-url-from-html-code-using-regex/1819624#1819624 Comment by Peter Stuifzand on Get url from html code using Regex Peter Stuifzand 2009-11-30T14:59:47Z 2009-11-30T14:59:47Z Correct, there are many pitfalls when using information from the web. On the other hand if I need to find the urls from one webpage on which I can see all possible problems (or find out by testing) I will use this regex (or variant) before using heavier tools. Still, this all depends on the situation and this looks like a Get it Done situation. http://stackoverflow.com/questions/1819967/is-using-package-inside-my-methods-bad-for-inheritance/1819989#1819989 Comment by Peter Stuifzand on Is using __PACKAGE__ inside my methods bad for inheritance? Peter Stuifzand 2009-11-30T14:05:01Z 2009-11-30T14:05:01Z If <code>&#95;&#95;PACKAGE&#95;&#95;</code> is what you need, you should use that. It could be a problem and you should check if you get the results you expect. http://stackoverflow.com/questions/1819692/mysql-database-structure-more-columns-or-more-rows/1819720#1819720 Comment by Peter Stuifzand on MySQL database structure: more columns or more rows? Peter Stuifzand 2009-11-30T13:12:47Z 2009-11-30T13:12:47Z Instead of using a tag, he can create a new dictionary table <code>(id, name)</code> and use the <code>id</code> in the table. Takes less memory and is faster to check and join on. http://stackoverflow.com/questions/1819377/use-of-parameters-for-mysqlquery/1819417#1819417 Comment by Peter Stuifzand on Use of parameters for mysql_query Peter Stuifzand 2009-11-30T12:57:05Z 2009-11-30T12:57:05Z Never, ever, uses magic quotes. Code that relies on magic quotes is broken by default. http://stackoverflow.com/questions/1819377/use-of-parameters-for-mysqlquery/1819406#1819406 Comment by Peter Stuifzand on Use of parameters for mysql_query Peter Stuifzand 2009-11-30T12:56:18Z 2009-11-30T12:56:18Z Prepared statements are the best way in my opinion, because they don't mix data and SQL. http://stackoverflow.com/questions/1819563/php-file-upload-files-disappearing-from-tmp-before-moveuploadedfiles/1819586#1819586 Comment by Peter Stuifzand on PHP File Upload, files disappearing from /tmp before move_uploaded_files Peter Stuifzand 2009-11-30T12:51:55Z 2009-11-30T12:51:55Z Not sure, I haven't test this. But from experience, everytime I forget enctype=&quot;mult...&quot;, I don't have any files. Checking this is easy. Use Live HTTP headers or similar and see if the file is sent. http://stackoverflow.com/questions/1819563/php-file-upload-files-disappearing-from-tmp-before-moveuploadedfiles Comment by Peter Stuifzand on PHP File Upload, files disappearing from /tmp before move_uploaded_files Peter Stuifzand 2009-11-30T12:37:23Z 2009-11-30T12:37:23Z Please post your HTML form. I think the problem is in your HTML. http://stackoverflow.com/questions/1815393/php-m-or-f-male-or-female/1815618#1815618 Comment by Peter Stuifzand on php M or F (male or female) Peter Stuifzand 2009-11-30T12:35:52Z 2009-11-30T12:35:52Z You used the ternary operator in the wrong way. Don't use assignment in the second or third expression. As this will create many subtle bugs. Use something like <code>$sex = .... ? $&#95;POST['sex'] : false</code>.