29 Jun 2013 $uploadfile = './' . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadfile)) { echo "File was successfully uploaded.\n"; } else { echo "There was an issue uploading the file.\n"; }29 Jun 2013 I had several views in my MySQL database that were showing "In Use" and phpmyadmin would not let me drop them through the interface. The solution: Open the MySQL in terminal and "DROP VIEW yourView;"29 Jun 2013 file.php <?php return array('item1','item2'); ?> Your php code: <?php $thisVariable = include('file.php'); print_r($thisVariable); //prints the array ?>17 Jun 2013 http://themanbehindthecode.com/2011/08/12/avoid-mysql-copying-to-tmp-table/ 16 Jun 2013 If you're looking for how to do a nested IFNULL, you probably need to be looking at how to use COALESCE instead. It returns the first non-null item in a list.
Example:
SELECT COALESCE(NULL,1);
Returns 1
16 Jun 2013 IFNULL(`field1`, `field2`) That returns field1 if it's not null. However, it will return field2 if it is null.
16 Jun 2013 If your INNER join is returning too few values and duplicates, you're probably using the wrong kind of join. Try a LEFT join. INNER JOIN is the same as JOIN http://i.stack.imgur.com/GbJ7N.png (diagram explaining joins)LEFT JOIN is used - this will return ALL rows from Table1, regardless of whether or not there is a matching row in Table2. 16 Jun 2013 I just brought 4 queries from 15 seconds to less than 1 second by adding indexes to the columns in the ON() portion on the join. Indexes help... A lot.15 Jun 2013 Set public $responsiveCss = false; to public $responsiveCss = true;13 Jun 2013 http://mahmudahsan.wordpress.com/2008/08/27/mysql-the-group_concat-function/ This seems like it will be super useful. If you're using "group by" and you still want to get data out of the grouped rows, then you can use this to combine multiple rows into a single row.