User Greg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:51:43Z http://stackoverflow.com/feeds/user/24181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860393/recursive-file-search-php/1860479#1860479 2 Answer by Greg for Recursive File Search (PHP) Greg 2009-12-07T14:58:27Z 2009-12-07T14:58:27Z <p>You should create a filter:</p> <pre><code>class JpegOnlyFilter extends RecursiveFilterIterator { public function __construct($iterator) { parent::__construct($iterator); } public function accept() { return $this-&gt;current()-&gt;isFile() &amp;&amp; preg_match("/\.jpe?g$/ui", $this-&gt;getFilename()); } public function __toString() { return $this-&gt;current()-&gt;getFilename(); } } $it = new RecursiveDirectoryIterator("L:\folder\folder\folder"); $it = new JpegOnlyFilter($it); $it = new RecursiveIteratorIterator($it); foreach ($it as $file) ... </code></pre> http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/173479#173479 27 Answer by Greg for PHP Arrays: A good way to check if an array is associative or sequential? Greg 2008-10-06T07:36:26Z 2009-12-07T02:24:32Z <p>This will do it for you</p> <pre><code>&lt;?php function isAssoc($arr) { return array_keys($arr) !== range(0, count($arr) - 1); } var_dump(isAssoc(array('a', 'b', 'c'))); // false var_dump(isAssoc(array("0" =&gt; 'a', "1" =&gt; 'b', "2" =&gt; 'c'))); // false var_dump(isAssoc(array("1" =&gt; 'a', "0" =&gt; 'b', "2" =&gt; 'c'))); // true var_dump(isAssoc(array("a" =&gt; 'a', "b" =&gt; 'b', "c" =&gt; 'c'))); // true ?&gt; </code></pre> http://stackoverflow.com/questions/1847215/how-to-make-a-workeable-a-href-in-php/1847276#1847276 0 Answer by Greg for How to make a workeable <a href.. in PHP Greg 2009-12-04T14:26:44Z 2009-12-04T14:26:44Z <p>You should be able to use a lookbehind assertion - <code>(?&lt;=...)</code> then always add in the http:// in your link:</p> <pre><code>$patterns = "!(((?&lt;=http:/{2})[\w\.]{2,}[/\w\-\.\?\&amp;\=\#]*)|(www\.[/\w\-\.\?\&amp;\=\#]*)|([a-zA-Z0-9-\.]+(com|us|co.il)[^\s]*))!e"; return preg_replace($patterns, "'&lt;a class=\"highlight boughtAt\" href=\"http://\\1\" title=\"\\1\" target=\"_blank\"&gt;'.(strlen('\\1')&gt;=$chr_limit ? substr('\\1',0,$chr_limit).'$add':'\\1').'&lt;/a&gt;'", $url); </code></pre> http://stackoverflow.com/questions/1846151/cookies-can-not-be-retrieved-using-php/1846165#1846165 2 Answer by Greg for Cookies can not be retrieved using PHP Greg 2009-12-04T10:40:55Z 2009-12-04T10:40:55Z <p>Your <a href="http://php.net/setcookie" rel="nofollow"><code>setcookie()</code></a> call is wrong - you can't have a path in the domain part - it should be:</p> <pre><code>setcookie('username', $username, strtotime('+1 months'), '/jp/', '.localdomain.com'); </code></pre> http://stackoverflow.com/questions/1846086/why-does-ajax-call-for-json-data-trigger-the-error-callback-when-http-status-co/1846103#1846103 0 Answer by Greg for Why does $.ajax call for json data trigger the error callback when http status code is "200 OK"? Greg 2009-12-04T10:24:21Z 2009-12-04T10:24:21Z <p>Does your callback return a page with <code>Content-type: application/json</code>? If not, that could well be the reason.</p> http://stackoverflow.com/questions/1845938/how-can-we-use-this-and-option-selected/1845963#1845963 4 Answer by Greg for How can we use $(this) and option selected Greg 2009-12-04T09:54:48Z 2009-12-04T09:54:48Z <p>You can use either</p> <pre><code>$(':selected', this).text(); </code></pre> <p>or</p> <pre><code>$(this).find(':selected').text(); </code></pre> http://stackoverflow.com/questions/1839339/php-insert-autoincrement-value-for-parent-child-tables-concurrency-problem/1839377#1839377 3 Answer by Greg for Php - Insert Autoincrement Value - For Parent/Child Tables - Concurrency Problem Greg 2009-12-03T11:35:12Z 2009-12-03T11:35:12Z <p>When you call <a href="http://php.net/mysql%5Finsert%5Fid" rel="nofollow"><code>mysql_insert_id()</code></a> it gets the last inserted id <em>for that connection</em>, so two PHP scripts won't interfere with each other.</p> http://stackoverflow.com/questions/1838971/mysql-ifexpr1-expr2-expr3-but-i-dont-want-any-expr3-if-expr3-then-dont-outpu/1838983#1838983 2 Answer by Greg for MYSQL IF(expr1,expr2,expr3) but I don’t want any expr3 (if expr3 then don’t output anything. Greg 2009-12-03T10:17:31Z 2009-12-03T10:17:31Z <p>Just use <code>WHERE rFormat IS NULL</code> instead of <code>IF</code>.</p> http://stackoverflow.com/questions/1838794/php-image-creation-from-hex-values-in-database/1838813#1838813 3 Answer by Greg for PHP image creation from hex values in database Greg 2009-12-03T09:42:07Z 2009-12-03T09:42:07Z <p>You just need to move <code> $x = 0;</code> to before the start of the loop.</p> <p>There seem to be a few other things wrong, too</p> <pre><code>$x = 0; while($colors = mysql_fetch_array( $sql )) { $imgname = $x.".jpg"; $color = $colors['value']; // Skip the whole lot if the colour is invalid if (strlen($color) != 6) continue; // No need to create an array just to call list() $r = hexdec($color[0].$color[1]); $g = hexdec($color[2].$color[3]); $b = hexdec($color[4].$color[5]); // There's no need to header() if you're writing to a file //header("Content-type: image/jpeg"); $image = imagecreate( 720, 576 ); $colour = imagecolorallocate($image, $r, $g, $b); // You don't actually fill the image with the colour imagefilledrectangle($image, 0, 0, 719, 575, $colour); imagejpeg($image, $imgname); imagedestroy($image); $x++; } </code></pre> http://stackoverflow.com/questions/1835485/how-do-you-debug-through-a-compressed-javascript-file/1835495#1835495 9 Answer by Greg for How do you debug through a compressed javascript file? Greg 2009-12-02T20:15:25Z 2009-12-02T20:15:25Z <p>The simple answer is you don't debug through a compressed file - you use an uncompressed version for development.</p> http://stackoverflow.com/questions/1835407/301-htaccess-redirect-rule/1835436#1835436 1 Answer by Greg for 301 Htaccess Redirect Rule Greg 2009-12-02T20:04:56Z 2009-12-02T20:04:56Z <p>Like this:</p> <pre><code>RewriteRule ^wordA/wordB/.*$ /new_word/$0 [R=301] </code></pre> http://stackoverflow.com/questions/1832276/getting-last-6-values-from-an-multidimensional-array/1832286#1832286 8 Answer by Greg for Getting last 6 values from an multidimensional array Greg 2009-12-02T11:16:53Z 2009-12-02T11:16:53Z <p>You can use <a href="http://php.net/array%5Fslice" rel="nofollow"><code>array_slice()</code></a>:</p> <pre><code>$stats = array_slice($stats, -6); </code></pre> <p>The reason your code isn't working is because</p> <ol> <li><a href="http://php.net/array%5Fshift" rel="nofollow"><code>array_shift()</code></a> removes from the front of the array - so you'd end up with the first 6 removed, which is not the same as getting the last 6 unless your array has 12 items...</li> <li>array_shift edits the array in place and returns the item it removed</li> </ol> http://stackoverflow.com/questions/1832154/php-ternary-statement/1832166#1832166 2 Answer by Greg for Php ternary statement Greg 2009-12-02T10:54:59Z 2009-12-02T10:54:59Z <p>Nice... It is just a regular ternary operator (well, 3 of them, along with some concatenation).</p> <p>If you reformat it, it gets a bit clearer:</p> <pre><code>$output = $output ? '&lt;div class="' . $this-&gt;style_links . '"&gt;' . $output . '&lt;/div&gt;' : ''; $min = $total ? (($page - 1) * $limit) + 1 : 0; $max = (($page - 1) * $limit) &gt; ($total - $limit) ? $total : ((($page - 1) * $limit) + $limit); $output .= '&lt;div class="' . $this-&gt;style_results . '"&gt;' . sprintf($this-&gt;text, $min, $max, $total, $num_pages) . '&lt;/div&gt;'; return $output; </code></pre> http://stackoverflow.com/questions/1828935/php-curl-and-raw-headers/1828950#1828950 2 Answer by Greg for PHP, curl, and raw headers Greg 2009-12-01T21:09:53Z 2009-12-01T21:09:53Z <p>You can use <a href="http://php.net/curl%5Fgetinfo" rel="nofollow">curl_getinfo</a>:</p> <pre><code>$headers = curl_getinfo($c, CURLINFO_HEADER_OUT); </code></pre> http://stackoverflow.com/questions/1828760/php-regex-match-first-newline-after-x-characters-for-a-trimming-function/1828795#1828795 1 Answer by Greg for PHP Regex match first newline after x characters for a trimming function Greg 2009-12-01T20:45:18Z 2009-12-01T20:45:18Z <p>You can add the <code>s</code> (DOTALL) modifier to make <code>.</code> match newlines, then just make the second bit ungreedy. I've also made it match everything if the string is under 500 characters and anchored it to the start:</p> <pre><code>preg_match('/^.{500}[^\n]+|^.{0,500}$/s', $output, $matches); $output = $matches[0]; </code></pre> http://stackoverflow.com/questions/1827965/is-putting-a-div-inside-a-anchor-ever-correct/1828030#1828030 1 Answer by Greg for Is putting a div inside a anchor ever correct? Greg 2009-12-01T18:37:19Z 2009-12-01T18:37:19Z <p>You can't put <code>&lt;div&gt;</code> inside <code>&lt;a&gt;</code> - it's not valid (X)HTML.</p> <p>Even though you style a span with display: block you still can't put block-level elements inside it: the (X)HTML still has to obey the (X)HTML DTD (whichever one you use), no matter how the CSS alters things.</p> <p>The browser will probably display it as you want, but that doesn't make it right.</p> http://stackoverflow.com/questions/1827971/php-converting-a-date-to-a-timestamp/1827987#1827987 7 Answer by Greg for PHP Converting a date to a timestamp Greg 2009-12-01T18:30:05Z 2009-12-01T18:30:05Z <p>Yes you can use <a href="http://php.net/strtotime" rel="nofollow"><code>strtotime()</code></a> for that</p> <pre><code>$time = strtotime('9/7/2009'); echo $time; // 1252278000 </code></pre> <p>This will assume a format of mm/dd/yyyy so don't try it with UK-style dd/mm/yyyy dates.</p> <p>To go the other way, use <a href="http://php.net/date" rel="nofollow"><code>date()</code></a></p> <pre><code>$date = date('n/j/Y', $time); echo $date; // 9/7/2009 </code></pre> http://stackoverflow.com/questions/1822280/only-execute-script-if-entered-email-is-from-a-specific-domain/1822336#1822336 1 Answer by Greg for Only execute script if entered email is from a specific domain Greg 2009-11-30T20:56:35Z 2009-11-30T20:56:35Z <p>Your regular expression is a bit off (it will allow foo@secondgearsoftwaresecondgearsoftware.com) and can be simplified:</p> <pre><code>$pattern = '/@((euro\.|asia\.)?secondgearsoftware|secondgearllc)\.com$/i'; </code></pre> <p>I've made it case-insensitive and anchored it to the end of the string.</p> <p>There doesn't seem to be a need to check what's before the "@" - you should have a proper validation routine for that if necessary, but it seems you just want to check if the email address belongs to one of these domains.</p> http://stackoverflow.com/questions/1822263/multiple-forms-with-submit-enabled-via-checkbox/1822281#1822281 1 Answer by Greg for Multiple Forms with Submit enabled via Checkbox Greg 2009-11-30T20:45:25Z 2009-11-30T20:45:25Z <p>something like this might be better:</p> <pre><code>$(function() { $("form").each(function() { $("#Agreement", this).click(function() { $('input:submit', this.form).attr("disabled", this.checked ? "" : "disabled"); }); }); }); </code></pre> <p>It looks like you're re-using <code>id="Agreement"</code> within each form - you shouldn't do that.</p> <p>You could even do this if you change id to class:</p> <pre><code>$(function() { $("form .Agreement").click(function() { $('input:submit', this.form).attr("disabled", this.checked ? "" : "disabled"); }); }); </code></pre> http://stackoverflow.com/questions/1821888/mysql-select-statement-with-chinese-and-japanese-characters-empty-result/1821920#1821920 2 Answer by Greg for MySQL: SELECT statement with Chinese and Japanese characters (empty result?) Greg 2009-11-30T19:35:50Z 2009-11-30T19:35:50Z <p>Probably you need to set your connection to UTF-8 (assuming that's what you're using):</p> <pre><code>mysql_query('SET NAMES "utf8"'); </code></pre> http://stackoverflow.com/questions/1821882/javascript-help/1821892#1821892 2 Answer by Greg for JavaScript Help Greg 2009-11-30T19:32:22Z 2009-11-30T19:32:22Z <p>You can change the textarea like this:</p> <pre><code>document.forms['myform'].elements['txtOutput'].value = myValue; </code></pre> <p>You should remove <code>name=txtOutput</code> from your button - you don't need it and it'll just make things difficult.</p> http://stackoverflow.com/questions/1820129/when-and-why-is-xml-preferable-to-csv/1820168#1820168 2 Answer by Greg for When and Why is XML preferable to CSV? Greg 2009-11-30T14:34:01Z 2009-11-30T14:34:01Z <p>In addition to the other answers, XML allows you to specify which character set the document is in.</p> http://stackoverflow.com/questions/1813908/problem-with-transparent-margin/1813941#1813941 3 Answer by Greg for Problem with transparent margin Greg 2009-11-28T22:14:02Z 2009-11-28T22:14:02Z <p>It's not a bug - it's called <a href="http://www.howtocreate.co.uk/tutorials/css/margincollapsing" rel="nofollow">margin collapsing</a>.</p> <p>You could do with preventing the margins from touching - this is why adding padding or a border fixes it.</p> http://stackoverflow.com/questions/1799384/how-can-i-sanitize-my-include-statements/1799416#1799416 12 Answer by Greg for How can I sanitize my include statements? Greg 2009-11-25T19:31:28Z 2009-11-25T19:31:28Z <p>The safest way is to whitelist your pages:</p> <pre><code>$page = 'home.php'; $allowedPages = array('one.php', 'two.php', ...); if (!empty($_GET['page']) &amp;&amp; in_array($_GET['page'], $allowedPages)) $page = $_GET['page']; include $page; </code></pre> http://stackoverflow.com/questions/1799336/jquery-binding-and-unbinding-live-click-events/1799356#1799356 1 Answer by Greg for jQuery: Binding and Unbinding Live Click Events Greg 2009-11-25T19:21:46Z 2009-11-25T19:21:46Z <p>According to the <a href="http://docs.jquery.com/Events/live" rel="nofollow">documentation</a>:</p> <blockquote> <p>Live events currently only work when used against a selector.</p> </blockquote> <p><code>$(this)</code> is not a selector.</p> http://stackoverflow.com/questions/1799284/how-can-i-break-exit-from-a-each-function-in-jquery/1799290#1799290 6 Answer by Greg for How can i break/exit from a each() function in JQuery? Greg 2009-11-25T19:12:15Z 2009-11-25T19:12:15Z <p>According to the <a href="http://docs.jquery.com/Utilities/jQuery.each" rel="nofollow">documentation</a> you can simply <code>return false;</code> to break:</p> <pre><code>$(xml).find("strengths").each(function() { if (iWantToBreak) return false; }); </code></pre> http://stackoverflow.com/questions/1799184/how-to-add-array-element-values-with-javascript/1799204#1799204 2 Answer by Greg for how to add array element values with javascript ? Greg 2009-11-25T18:58:42Z 2009-11-25T18:58:42Z <p>A quick way is to use the unary plus operator to make them numeric:</p> <pre><code>var TOTAL = 0; for (var i = 0; i &lt; 10; i++) { TOTAL += +myArray[i]; } </code></pre> http://stackoverflow.com/questions/1798995/jquery-ajax-images-preload/1799013#1799013 0 Answer by Greg for jQuery ajax images preload Greg 2009-11-25T18:29:45Z 2009-11-25T18:29:45Z <p>You need to create an array of elements:</p> <pre><code>$(img1,img2).load( </code></pre> <p>should be</p> <pre><code>$([img1, img2]).load( </code></pre> <p>It seems like overkill to do <code>$(img1).attr('src', 'source1');</code> when you could do <code>img1.src = 'source1';</code></p> http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796465#1796465 3 Answer by Greg for Calculating difference between username and email in javascript Greg 2009-11-25T11:52:21Z 2009-11-25T11:52:21Z <p>Something like this?</p> <pre><code>var charsRe = /[.+]/g; // Add your characters here if (username.replace(charsRe, '') == email.split('@')[0].replace(charsRe, '')) doError(); </code></pre> http://stackoverflow.com/questions/1796288/whats-the-difference-between-delete-from-tablea-and-truncate-table-tablea-in-m/1796327#1796327 3 Answer by Greg for What's the difference between delete from table_a and truncate table table_a in MySQL? Greg 2009-11-25T11:23:52Z 2009-11-25T11:23:52Z <ul> <li>Truncate is much faster</li> <li>Truncate resets autoincrements</li> <li>Truncate is not transaction safe - it will autocommit</li> <li>Delete doesn't have to remove all rows</li> </ul> <p><a href="http://dev.mysql.com/doc/refman/5.1/en/truncate-table.html" rel="nofollow">Truncate Documentation</a><br> <a href="http://dev.mysql.com/doc/refman/5.1/en/delete.html" rel="nofollow">Delete Documentation</a></p> http://stackoverflow.com/questions/1861353/add-key-value-to-an-associative-array-in-a-loop Comment by Greg on add key => value to an associative array in a loop? Greg 2009-12-07T17:06:54Z 2009-12-07T17:06:54Z Where does $tagcount come from? http://stackoverflow.com/questions/1856473/why-would-curl-ignore-curlopttimeoutms-but-honor-curlopttimeout Comment by Greg on Why would curl ignore CURLOPT_TIMEOUT_MS (but honor CURLOPT_TIMEOUT)? Greg 2009-12-06T20:21:33Z 2009-12-06T20:21:33Z Check phpinfo() to make sure you have at least curl 7.16.2 http://stackoverflow.com/questions/1846086/why-does-ajax-call-for-json-data-trigger-the-error-callback-when-http-status-co/1846103#1846103 Comment by Greg on Why does $.ajax call for json data trigger the error callback when http status code is "200 OK"? Greg 2009-12-04T14:22:31Z 2009-12-04T14:22:31Z hmmm maybe that was the prototype library not jquery then http://stackoverflow.com/questions/1838971/mysql-ifexpr1-expr2-expr3-but-i-dont-want-any-expr3-if-expr3-then-dont-outpu/1838983#1838983 Comment by Greg on MYSQL IF(expr1,expr2,expr3) but I don’t want any expr3 (if expr3 then don’t output anything. Greg 2009-12-03T10:36:44Z 2009-12-03T10:36:44Z Can you give an example of what you're trying to achieve? http://stackoverflow.com/questions/1835407/301-htaccess-redirect-rule/1835436#1835436 Comment by Greg on 301 Htaccess Redirect Rule Greg 2009-12-02T21:06:51Z 2009-12-02T21:06:51Z No you shouldn't need a RewriteCond from what you've described http://stackoverflow.com/questions/1832154/php-ternary-statement/1832166#1832166 Comment by Greg on Php ternary statement Greg 2009-12-02T12:18:55Z 2009-12-02T12:18:55Z It's like using an <code>if ()</code>: <code>if ($output)</code> is the same as <code>if ($output == true)</code> - in the same way <code>$output ? x : y</code> is the same as <code>$output == true ? x : y</code> http://stackoverflow.com/questions/1831933/javascript-window-open-issue-ie7-ie8 Comment by Greg on Javascript Window.open Issue IE7 / IE8 Greg 2009-12-02T10:14:34Z 2009-12-02T10:14:34Z Popup blocker? Built-in or otherwise http://stackoverflow.com/questions/1828906/will-my-object-always-be-there Comment by Greg on Will my object always "be there"? Greg 2009-12-01T21:07:48Z 2009-12-01T21:07:48Z It won't be thrown away but it may be paged to disk by the OS http://stackoverflow.com/questions/1828760/php-regex-match-first-newline-after-x-characters-for-a-trimming-function/1828795#1828795 Comment by Greg on PHP Regex match first newline after x characters for a trimming function Greg 2009-12-01T20:45:46Z 2009-12-01T20:45:46Z Hope this makes sense... brain is fried... http://stackoverflow.com/questions/1828531/how-can-i-get-yesterdays-date-in-unix-format-in-javascript/1828543#1828543 Comment by Greg on how can I get yesterdays date in unix format in javascript? Greg 2009-12-01T20:11:36Z 2009-12-01T20:11:36Z That's what the <code>/ 1000</code> is for http://stackoverflow.com/questions/1822032/javascript-undefined-error-but-alert-tosource-shows-the-object-exists Comment by Greg on javascript undefined error, but alert toSource shows the object exists Greg 2009-11-30T20:02:30Z 2009-11-30T20:02:30Z Looks OK... have a URL for it? http://stackoverflow.com/questions/1821917/why-doesnt-my-script-tag-work-from-php-file-jquery-involved-here-too Comment by Greg on Why doesn't my <script> tag work from php file? (jQuery involved here too) Greg 2009-11-30T19:40:10Z 2009-11-30T19:40:10Z How are you trying to use it? Possibly it's not loaded before you attempt to use it. http://stackoverflow.com/questions/1810655/8-hour-challenge Comment by Greg on 8 Hour Challenge Greg 2009-11-27T21:25:25Z 2009-11-27T21:25:25Z Sooooooo what's the question? http://stackoverflow.com/questions/1799384/how-can-i-sanitize-my-include-statements/1799493#1799493 Comment by Greg on How can I sanitize my include statements? Greg 2009-11-25T19:55:28Z 2009-11-25T19:55:28Z index.php?page=/etc/passwd&amp;pwnt=true http://stackoverflow.com/questions/1799336/jquery-binding-and-unbinding-live-click-events/1799356#1799356 Comment by Greg on jQuery: Binding and Unbinding Live Click Events Greg 2009-11-25T19:46:54Z 2009-11-25T19:46:54Z I <i>think</i> so...