User mabwi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:39:41Zhttp://stackoverflow.com/feeds/user/655http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1919361/generate-multi-dimentional-json-array-from-php-mysql/1919400#19194000Answer by mabwi for generate multi-dimentional JSON array from PHP/MySQLmabwi2009-12-17T04:09:54Z2009-12-17T04:09:54Z<pre><code>$returnArray['DateUpdated'] = '20091209';
$returnArray['UpdatUser'] = 'Bob';
</code></pre>
<p>And then json_encode the return array, and you should be set.</p>
http://stackoverflow.com/questions/1915081/how-i-can-get-this-numbers-format-in-he-php/1915091#191509113Answer by mabwi for how i can get this numbers format in he phpmabwi2009-12-16T14:45:35Z2009-12-16T14:45:35Z<pre><code>echo number_format(10000);
</code></pre>
<p>More info here: <a href="http://ca3.php.net/number%5Fformat" rel="nofollow">http://ca3.php.net/number_format</a></p>
http://stackoverflow.com/questions/1604597/emacs-using-select-all-in-function-how-to-find-the-function-bound-to-a-key1Emacs - Using "Select All" in Function (how to find the function bound to a key)mabwi2009-10-22T01:39:26Z2009-12-04T19:59:45Z
<p>I'm trying to figure out Elisp, and I've hit a roadblock.</p>
<p>I want a function that will Indent the entire file. Right now, I'm selecting the whole file (<kbd>C-x h</kbd>) and then doing <kbd>M-x indent-region</kbd> (which does have a shortcut key).</p>
<p>I'd like to combine that in to a single keypress, but can't figure out how to do <kbd>C-x h</kbd> in a function.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1830205/manually-building-a-tree-in-cakephp0Manually Building a Tree in CakePHPmabwi2009-12-02T01:58:25Z2009-12-02T13:08:27Z
<p>I'm currently working on building an application in CakePHP. There's a quite extensive existing data set that's conceptually a tree, but wasn't previously stored as one. What I mean by that, is there's no real relationship defined in the data. </p>
<p>The problem I'm having is getting it to work correctly with the CakePHP tree behaviour. Because I have to set all the values on existing data - as opposed to Cake setting up the structure as elements are inserted - I need to understand how the lft/rght values work.</p>
<p>So, I guess the question is:</p>
<p>How does the structure data work, specifically the lft/rght values? How do I set it up so that the data comes out rationally, without inserting them one at a time? It's a 2 level tree, with Sections and sub-sections.</p>
<p>Thanks for the help</p>
http://stackoverflow.com/questions/1822854/mysql-how-to-get-records-with-count-1/1822867#18228670Answer by mabwi for MySQL: how to get records with count > 1?mabwi2009-11-30T22:28:45Z2009-11-30T22:37:19Z<p>The <code>HAVING</code> clause</p>
<pre><code> SELECT *, count(*) as cc
FROM manytomany
GROUP BY aid, bid
HAVING cc > 1
ORDER BY cc DESC
</code></pre>
http://stackoverflow.com/questions/1800798/php-case-statement-not-working-with-zero-values/1800982#18009820Answer by mabwi for PHP CASE statement not working with ZERO values.mabwi2009-11-26T00:52:08Z2009-11-26T00:52:08Z<p>This isn't really how switch is intended to be used. It's to evaluate for a specific value.</p>
<p>Use an If/else if here, instead of complicating your life to make a switch work like one.</p>
http://stackoverflow.com/questions/1775794/why-is-there-an-before-input-in-arraysplice-array-input-int-offset/1775804#17758046Answer by mabwi for Why is there an & before $input in array_splice ( array &$input , int $offset [, int $length = 0 [, mixed $replacement ]] )mabwi2009-11-21T15:40:46Z2009-11-21T15:40:46Z<p>That means the $input array is passed by reference, so any changes made in the function affect that array. The default behaviour is to pass a copy, so changes made inside the function don't affect the original.</p>
http://stackoverflow.com/questions/1770775/easy-php-question/1770797#17707971Answer by mabwi for EASY PHP question?mabwi2009-11-20T14:31:13Z2009-11-20T14:31:13Z<p>What happens if you <code>print_r</code> or <code>var_dump($_POST)</code>? At first glance, it looks like your POST is empty, or at least <code>$_POST['country']</code>.</p>
http://stackoverflow.com/questions/1767179/any-special-php-function-to-make-a-string-url-friendly-for-address-bar/1767201#17672011Answer by mabwi for any special php function to make a string 'url' friendly for address-bar ?mabwi2009-11-19T23:05:50Z2009-11-19T23:05:50Z<p>There's <a href="http://www.php.net/urlencode" rel="nofollow">urlencode</a>, but I'm not sure if that's exactly what you're looking for</p>
http://stackoverflow.com/questions/1763409/html-coloring-part-of-text-in-a-line/1763421#17634211Answer by mabwi for HTML: Coloring part of text in a linemabwi2009-11-19T13:50:04Z2009-11-19T13:50:04Z<p>Change your div to span</p>
<p>Also, consider adding class attributes and putting your style information in an external CSS file.</p>
http://stackoverflow.com/questions/1616939/reading-paradox-database-files0Reading Paradox Database filesmabwi2009-10-24T04:13:15Z2009-11-11T21:41:53Z
<p>I'm working with a client who has an existing system, built on what is apparently a Paradox database. I've got the database, in the form of a zip file containing .DB, .MB and .PX files, one for each table.</p>
<p>I need to take (some) of this data and import it in to a Web application that's using MySQL. Does anybody have a way for me to extract this data, that doesn't involve installing Paradox? </p>
<p>If not, does Paradox export in some readable format? Either as SQL or something that can be parsed reasonably easily? The person in charge of this system for my client is a volunteer (they're a non-profit), so I'd like to go to him with a solution - because last time I asked for the data, I got this, which is clearly no good.</p>
http://stackoverflow.com/questions/1689733/php-and-mysql-loop-help/1689792#16897921Answer by mabwi for PHP and MySQL Loop help?mabwi2009-11-06T19:28:51Z2009-11-06T19:28:51Z<p>Something like this gets you three links per div. We add the extra conditional echo at the end for the case that there's not a multiple of 3 links</p>
<pre><code>$ctr = 0;
while ($row = mysqli_fetch_assoc($dbc)) {
if (!empty($row['category']) && !empty($row['url'])) {
if ($ctr%3 == 0) {
echo '<div>';
}
$ctr ++;
echo '<p><a href="' . $row['url'] . '" title="' . $row['category'] . ' Category Link">' . $row['category'] . '</a></p?';
if ($ctr%3 == 0) {
echo '</div>';
}
}
}
if ($ctr%3 != 0) {
echo '</div>';
}
</code></pre>
http://stackoverflow.com/questions/1618933/any-lightweight-nix-environment-for-programming/1618934#16189340Answer by mabwi for Any lightweight *nix environment for programmingmabwi2009-10-24T20:07:59Z2009-10-24T20:07:59Z<p>What about something like <a href="http://distrowatch.com/table.php?distribution=puppy" rel="nofollow">Puppy</a> or <a href="http://distrowatch.com/table.php?distribution=damnsmall" rel="nofollow">DSL</a>? </p>
<p>They aren't dedicated to programming, but they <em>are</em> small and lightweight.</p>
http://stackoverflow.com/questions/1615405/drupal-is-allowing-viewing-of-unpublished-content/1615637#16156372Answer by mabwi for Drupal is allowing viewing of unpublished contentmabwi2009-10-23T20:09:39Z2009-10-23T20:09:39Z<p>Are you using Views? If so, make sure you have a filter set to show Published only.</p>
<p>I ran in to a similar problem with comments, which lead to some excellent spamming opportunities until I discovered it.</p>
http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language/1609242#160924217Answer by mabwi for Why NOT use PHP as a desktop programming language?mabwi2009-10-22T18:50:00Z2009-10-22T19:29:45Z<p>PHP is designed specifically to create web applications. While it is <em>technically</em> possible to create desktop apps using it, you're really sanding off the corners to fit the square peg in the round hole.</p>
<p>There are so many programming languages designed with the desktop as a target, it just doesn't make sense to try and shoehorn PHP in to a world it's not meant for. </p>
<p>For perspective: PHP is my job</p>
http://stackoverflow.com/questions/1594411/call-php-from-javascript-and-return-an-array-from-php-to-javascript-function/1594487#15944870Answer by mabwi for Call php from javascript and return an array from php to Javascript functionmabwi2009-10-20T13:05:58Z2009-10-20T13:05:58Z<p>At the end, do this:</p>
<pre><code>print json_encode($filesArray);
</code></pre>
<p>and it will send back a json object, which Javascript can read easily.</p>
http://stackoverflow.com/questions/1573942/need-flash-popup-to-redirect-parent1Need Flash popup to redirect parentmabwi2009-10-15T17:38:41Z2009-10-16T20:43:02Z
<p>I'm working on a project with a Flash object I have no control over, though I can get changes made by the developer. What needs to happen is for the Flash object to POST a value to a php file on my server, and upon a successful result, redirect the <em>parent</em> window to a new url, and then close the popup.</p>
<p>It's POSTing correctly, but the redirect won't go to the parent.</p>
<p>Right now, we have this javascript happening in the Flash, which works with straight HTML:</p>
<pre><code>opener.location='view_cart.php';
self.close();
</code></pre>
<p>And it's just closing the window without a redirect.</p>
<p>Any suggestions?</p>
<p>I should add - just a redirect was working fine, but in the Flash window, which is not what we want.</p>
http://stackoverflow.com/questions/1573942/need-flash-popup-to-redirect-parent/1580290#15802901Answer by mabwi for Need Flash popup to redirect parentmabwi2009-10-16T20:43:02Z2009-10-16T20:43:02Z<p>As Andy Li indicated in the comments to the question, ExternalInterface, with a JavaScript function to do what we wanted, was the solution.</p>
http://stackoverflow.com/questions/1571765/question-regarding-php-function-pregreplace/1572225#15722252Answer by mabwi for question regarding php function preg_replace mabwi2009-10-15T13:00:41Z2009-10-15T13:00:41Z<p>If you don't know what is between the tags, Phill's response won't work. </p>
<p>This will work if there's no other tags in between, and is definitely the easier case. You can replace the div with whatever tag you need, obviously.</p>
<pre><code>preg_replace('#<div>[^<]+</div>#','',$html);
</code></pre>
<p>If there could be other tags in the middle, this should work, but could cause problems. You're probably better off going with the DOM solution above, if so</p>
<pre><code>preg_replace('#<div>.+</div>#','',$html);
</code></pre>
<p><em>These aren't tested</em></p>
http://stackoverflow.com/questions/1561586/are-php-mysqli-prepared-queries-with-bound-parameters-secure/1561595#15615950Answer by mabwi for Are PHP MySQLi prepared queries with bound parameters secure?mabwi2009-10-13T17:04:44Z2009-10-13T17:04:44Z<p>When you bind parameters to a prepared statement, it escapes the data automatically, so you shouldn't escape it before you send it through. Double escaping is usually a bad thing. At the very least, it produces ugly results with extra escaped characters later on.</p>
http://stackoverflow.com/questions/1525921/help-in-getting-hour-and-minute-in-php/1525937#15259379Answer by mabwi for Help in getting Hour and Minute in PHPmabwi2009-10-06T14:28:24Z2009-10-06T14:43:30Z<pre><code>print date('H:i');
$var = date('H:i');
</code></pre>
<p>Should do it, for the current time. Use a lower case h for 12 hour clock instead of 24 hour.</p>
http://stackoverflow.com/questions/1512122/emacs-not-indenting-php-correctly-although-c-c-do/1514100#15141000Answer by mabwi for Emacs not indenting PHP correctly, although C/C++ do?mabwi2009-10-03T15:46:43Z2009-10-03T15:46:43Z<p>Your problem is a missing { after the else. Emacs is indenting as if you were continuing the else. Add the { and it'll work fine</p>
http://stackoverflow.com/questions/1481140/hidden-fields-are-not-processed-with-php/1481163#14811631Answer by mabwi for Hidden fields are not processed with php.mabwi2009-09-26T13:01:15Z2009-09-26T13:01:15Z<p>Your PHP script accesses $_POST['adminemail'], but the hidden field is called adminaddress</p>
http://stackoverflow.com/questions/1467664/how-to-implement-cross-browser-min-height-and-max-height-at-the-same-time/1467937#14679371Answer by mabwi for How to implement cross browser min-height and max-height at the same time?mabwi2009-09-23T18:53:01Z2009-09-23T18:53:01Z<p>If you want to go pure CSS, I'd go the conditional stylesheet route.</p>
<p>However, my preferred solution is just a touch of jQuery:</p>
<pre><code> $(document).ready() (function() {
if ($("#division").height() > 200) {
$("#division").height('200px');
}
if ($("#division").height() < 40) {
$("#division").height('40px');
}
}
</code></pre>
http://stackoverflow.com/questions/1415149/attachments-using-mail-in-php-not-delivering-message/1415263#14152630Answer by mabwi for Attachments using mail() in php not delivering messagemabwi2009-09-12T14:30:37Z2009-09-12T14:30:37Z<p>Can you post the source from the email you receive? </p>
http://stackoverflow.com/questions/1414870/pagerank-in-a-inner-search-engine-of-a-cms/1414963#14149630Answer by mabwi for PageRank in a inner search engine of a CMSmabwi2009-09-12T12:08:05Z2009-09-12T12:08:05Z<p>If you have the PageRank algorithm done, you probably don't want to be calculating it on each search. I'd schedule regular calculations (daily? weekly? whatever is most appropriate) and then store the PR in your database.</p>
<p>Then, when you run your SQL query, just ORDER BY page_rank</p>
http://stackoverflow.com/questions/1414946/parsing-classes-functions-and-arguments-in-php/1414957#14149570Answer by mabwi for Parsing Classes, Functions and Arguments in PHPmabwi2009-09-12T12:04:07Z2009-09-12T12:04:07Z<p>I can't help you with your particular question, as I've never used Tokenizer either.</p>
<p>You don't mention what you're using this for, but would something like phpDoc do what you need?</p>
http://stackoverflow.com/questions/1413005/how-to-remove-script-tags/1413022#14130221Answer by mabwi for How to remove script tags?mabwi2009-09-11T20:08:47Z2009-09-11T20:08:47Z<p>Check out <a href="http://htmlpurifier.org/" rel="nofollow">http://htmlpurifier.org/</a>. It filters HTML input with a white list of acceptable tags, so you don't get anything undesirable - like iframes, or javascript, etc. Assuming I understand your question correctly.</p>
http://stackoverflow.com/questions/1411510/php-framework-cake-smarty-how-to-use-it-and-when/1411554#14115542Answer by mabwi for PHP framework (cake/smarty): How to use it and when?mabwi2009-09-11T15:15:36Z2009-09-11T15:15:36Z<p>A framework tries to provide all the things that are common to every (or most) projects - html rendering, database access, and so on - in a way that's simple and easy to use. </p>
<p>You would use one to speed development, because you can skip all that stuff, and focus on what's unique to your project. Depending on the one you use, it can also add some security features by automatically escaping data on the way to the database, or to the screen. </p>
<p>I use them in any situation where I don't need something so custom that it's more work to bend the framework to my needs than to create the whole thing from scratch. That's pretty rare.</p>
http://stackoverflow.com/questions/1394302/php-inject-in-another-users-session/1396018#13960180Answer by mabwi for PHP Inject in another users sessionmabwi2009-09-08T19:59:38Z2009-09-08T19:59:38Z<p>Instead of farting around with what is, essentially, indirect file handling through the session system, why not go straight to the point and use text files? </p>
<p>It's less vulnerable to attacks, and also less volatile, in the sense that future versions of PHP could decide to prevent this sort of session switching for security reasons (complete hypothetical, but it makes sense).</p>
http://stackoverflow.com/questions/1830205/manually-building-a-tree-in-cakephp/1831372#1831372Comment by mabwi on Manually Building a Tree in CakePHPmabwi2009-12-02T14:27:46Z2009-12-02T14:27:46ZThanks for this. I was able to figure out how the left/right values worked last night, but I really wish I'd found the recover method before I set them all manually... http://stackoverflow.com/questions/1813098/php-array-to-listComment by mabwi on PHP Array to Listmabwi2009-11-28T17:13:37Z2009-11-28T17:13:37ZWhat have you tried so far?http://stackoverflow.com/questions/1616939/reading-paradox-database-files/1640325#1640325Comment by mabwi on Reading Paradox Database filesmabwi2009-11-12T03:03:10Z2009-11-12T03:03:10ZThis is what we ended up doinghttp://stackoverflow.com/questions/1616939/reading-paradox-database-filesComment by mabwi on Reading Paradox Database filesmabwi2009-11-12T03:02:32Z2009-11-12T03:02:32ZThe people that had the data wrote a conversion program for me. Thanks for all your help.http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language/1609221#1609221Comment by mabwi on Why NOT use PHP as a desktop programming language?mabwi2009-10-22T18:50:50Z2009-10-22T18:50:50ZThe second argument isn't really valid, because <i>any</i> new language is going to have that problem.http://stackoverflow.com/questions/1604597/emacs-using-select-all-in-function-how-to-find-the-function-bound-to-a-key/1605008#1605008Comment by mabwi on Emacs - Using "Select All" in Function (how to find the function bound to a key)mabwi2009-10-22T12:26:11Z2009-10-22T12:26:11ZWhy is your method preferred over marking the whole buffer / indent region? I'm not sure what the difference is.http://stackoverflow.com/questions/1604597/emacs-using-select-all-in-function-how-to-find-the-function-bound-to-a-key/1604626#1604626Comment by mabwi on Emacs - Using "Select All" in Function (how to find the function bound to a key)mabwi2009-10-22T01:49:43Z2009-10-22T01:49:43ZThank you sir, C-h k is what I could not findhttp://stackoverflow.com/questions/1594411/call-php-from-javascript-and-return-an-array-from-php-to-javascript-function/1594487#1594487Comment by mabwi on Call php from javascript and return an array from php to Javascript functionmabwi2009-10-20T13:06:25Z2009-10-20T13:06:25Z@cballou has provided a much more complete answerhttp://stackoverflow.com/questions/1583058/problem-with-serverphpselfComment by mabwi on problem with $_SERVER['PHP_SELF']mabwi2009-10-17T20:10:16Z2009-10-17T20:10:16ZSCRIPT_NAME is a more secure version of PHP_SELFhttp://stackoverflow.com/questions/1573942/need-flash-popup-to-redirect-parentComment by mabwi on Need Flash popup to redirect parentmabwi2009-10-16T18:19:46Z2009-10-16T18:19:46ZThanks, Andy. The JavaScript works on its own. I'm trying to get the Flash dev to update the file for me so I can try it out. http://stackoverflow.com/questions/1573942/need-flash-popup-to-redirect-parentComment by mabwi on Need Flash popup to redirect parentmabwi2009-10-15T22:34:20Z2009-10-15T22:34:20ZThe Javascript is embedded in the Flash, as far as I knowhttp://stackoverflow.com/questions/1571765/question-regarding-php-function-pregreplace/1572195#1572195Comment by mabwi on question regarding php function preg_replace mabwi2009-10-15T13:05:31Z2009-10-15T13:05:31ZThere's an error in your regex. You need to start and end the regex with a delimiter, like # or /http://stackoverflow.com/questions/1481367/magic-functions-and-inheritanceComment by mabwi on Magic functions and inheritancemabwi2009-09-26T16:37:56Z2009-09-26T16:37:56Z@Sbm007 __get and __set are magic methods, they're called whenever you try to access a non-public member variable.http://stackoverflow.com/questions/1458017/drupal-how-to-return-only-content-and-not-the-whole-layout/1458321#1458321Comment by mabwi on Drupal: How to return only content and not the whole layout?mabwi2009-09-22T15:13:05Z2009-09-22T15:13:05ZAs Graham says below, you need to die() to prevent the theme layer being appliedhttp://stackoverflow.com/questions/1414870/pagerank-in-a-inner-search-engine-of-a-cms/1414963#1414963Comment by mabwi on PageRank in a inner search engine of a CMSmabwi2009-09-12T17:24:41Z2009-09-12T17:24:41ZYou will need to come up with some relationship between the non-PR relevance and the PR to determine overall query result.
If you want to go 50/50, you could take a relevance score out of 10, and your PR score out of 10, and add them together, with the highest combined score being your top result.
Or, you take all results that match the query term, and just sort them by PR, which makes PR your relevance score.