User Mark Biek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T20:31:39Z http://stackoverflow.com/feeds/user/305 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/28085#28085 1 Answer by Mark Biek for Where can I learn jQuery? Is it worth it? Mark Biek 2008-08-26T13:53:27Z 2009-12-12T12:38:58Z <p>I have yet to see a convincing argument for picking jQuery over Prototype or vice-versa.</p> <p>Just pick one of the two and learn it. It will make writing JavaScript code fun again.</p> http://stackoverflow.com/questions/1867278/php-determining-the-current-url/1867298#1867298 6 Answer by Mark Biek for PHP Determining the current url Mark Biek 2009-12-08T14:26:09Z 2009-12-08T14:26:09Z <p>Take a look at <code>$_SERVER['REQUEST_URI']</code> or <code>$_SERVER['SCRIPT_NAME']</code></p> <p>(From the <a href="http://php.net/manual/en/reserved.variables.server.php" rel="nofollow"><code>$_SERVER</code></a> manual entry)</p> http://stackoverflow.com/questions/1708498/problem-positioning-a-logo-and-a-banner-in-firefox-using-css/1708612#1708612 0 Answer by Mark Biek for Problem positioning a logo and a banner in Firefox using CSS Mark Biek 2009-11-10T15:02:50Z 2009-11-10T15:02:50Z <p>I'd do the markup like this:</p> <pre><code>&lt;div id="Header"&gt; &lt;div id="Banner"&gt;&lt;/div&gt; &lt;div id="logo"&gt;&lt;/div&gt; &lt;div style="clear: both;"&gt;&lt;/div&gt; &lt;/div&gt; &lt;!-- /Header --&gt; </code></pre> <p>And the CSS like this.</p> <pre><code>#Header { width: 1120px; } #logo { position: relative; float: left; width: 250px; height: 200px; margin: 0; border: 1px solid blue; } #Banner { position: relative; float: right; width: 850px; height: 250px; margin: 0; border: 1px solid red; } </code></pre> http://stackoverflow.com/questions/1708151/how-to-pass-embed-code-in-javascript/1708295#1708295 2 Answer by Mark Biek for how to pass embed code in javascript Mark Biek 2009-11-10T14:17:15Z 2009-11-10T14:26:23Z <p>I've also run into situations with Smarty where it tries to evaluate Javascript as Smarty template code.</p> <p>In that case, you need to surround the Javascript with <a href="http://www.smarty.net/manual/en/language.function.literal.php" rel="nofollow"><code>{literal}{/literal}</code></a> tags.</p> <p><hr></p> <p>However, in your case, I think you're missing a single-quote at the beginning of <code>select_item(</code> and a double-quote at the end of the <code>onClick</code> event:</p> <pre><code>&lt;a href="" onClick="return select_item('&lt;embed src=\"player.swf\" allowfullscreen=\"true\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" FlashVars=\"id=&amp;flv=1257568908_.flv\" type=\"application/x-shockwave-flash\" width=\"450\" height=\"371\"&gt;&lt;/embed&gt;')"&gt; </code></pre> <p>I'm not 100% sure if you really need to backslash-escape the double-quotes that are part of the <code>&lt;embed</code> HTML.</p> <p>For that amount of markup, I find it easier to read and debug if you <strong>don't</strong> do it inline as part of the <code>onClick</code> event. I use PrototypeJS so I'd handle it like this</p> <pre><code>&lt;a href="#" id="doSelectItem"&gt;Click Here&lt;/a&gt; //Handle the click event of the above a tag Event.observe($('doSelectItem'), 'click', function(event) { var markup = '&lt;embed src=\"player.swf\" allowfullscreen=\"true\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" FlashVars=\"id=&amp;flv=1257568908_.flv\" type=\"application/x-shockwave-flash\" width=\"450\" height=\"371\"&gt;&lt;/embed&gt;'; if( select_item(markup) ) { //select_item returns true, so let the click event continue }else { //select_item returned false so cancel the click event. Event.stop(event); } }); </code></pre> http://stackoverflow.com/questions/1702966/url-mod-rewrite/1702984#1702984 1 Answer by Mark Biek for URL Mod-Rewrite Mark Biek 2009-11-09T18:52:40Z 2009-11-09T18:52:40Z <p>An <code>.htaccess</code> file with something like this should do it.</p> <pre><code>Options +FollowSymLinks RewriteEngine On RewriteRule security-services/(.*)/? security-services.php?service=$1 [L] </code></pre> <p>The part that says <code>security-services/(.*)/?</code> matches the URL in the browser and rewrites it to <code>security-services.php</code>. </p> <p>The key part is the <code>(.*)</code> which captures that portion of the URL and passes it to the PHP script as a GET value.</p> http://stackoverflow.com/questions/244110/strange-error-when-creating-excel-files-with-spreadsheetexcelwriter 1 Strange error when creating Excel files with Spreadsheet_Excel_Writer Mark Biek 2008-10-28T17:14:08Z 2009-11-02T11:40:43Z <p>Here's the code. Not much to it. </p> <pre><code>&lt;?php include("Spreadsheet/Excel/Writer.php"); $xls = new Spreadsheet_Excel_Writer(); $sheet = $xls-&gt;addWorksheet('At a Glance'); $colNames = array('Foo', 'Bar'); $sheet-&gt;writeRow(0, 0, $colNames, $colHeadingFormat); for($i=1; $i&lt;=10; $i++) { $row = array( "foo $i", "bar $i"); $sheet-&gt;writeRow($rowNumber++, 0, $row); } header ("Expires: " . gmdate("D,d M Y H:i:s") . " GMT"); header ("Last-Modified: " . gmdate("D,d M Y H:i:s") . " GMT"); header ("Cache-Control: no-cache, must-revalidate"); header ("Pragma: no-cache"); $xls-&gt;send("test.xls"); $xls-&gt;close(); ?&gt; </code></pre> <p>The issue is that I get the following error when I actually open the file with Excel:</p> <pre><code>File error: data may have been lost. </code></pre> <p>Even stranger is the fact that, despite the error, the file seems fine. Any data I happen to be writing is there.</p> <p>Any ideas on how to get rid of this error?</p> <p><hr /></p> <h3>Edit</h3> <p>I've modified the code sample to better illustrate the problem. I don't think the first sample was a legit test.</p> http://stackoverflow.com/questions/1650534/is-the-form-tag-necessary/1650583#1650583 10 Answer by Mark Biek for Is the form tag necessary? Mark Biek 2009-10-30T15:40:00Z 2009-10-30T15:40:00Z <p>My preferred method is to leave the <code>&lt;form&gt;</code> tag but catch the <code>onsubmit</code> event of the form and just <code>return false</code>.</p> <pre><code>&lt;form name="foo" id="foo" action="" method="post"&gt; &lt;input type="text" name="bar" id="bar" /&gt; &lt;/form&gt; </code></pre> <p>Here's some rough PrototypeJS code that illustrates the approach.</p> <pre><code>&lt;script type="text/javascript"&gt; //Handle the window onload event Event.observe(window, 'load', function() { //Handle the form submit event Event.observe($('foo'), 'submit', function(event) { //Stop the event so the form doesn't actually submit Event.stop(event); }); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1630701/layout-problems-in-ie7/1630723#1630723 1 Answer by Mark Biek for Layout problems in IE7 Mark Biek 2009-10-27T13:14:45Z 2009-10-27T13:14:45Z <p>You have a few places where your markup is invalid (one or more <code>&lt;div&gt;</code> tags aren't closed properly) that could, potentially affect the layout. FireFox tends to be a bit more forgiving about that sort of thing than IE.</p> <p><img src="http://imgur.com/np22L.png" alt="alt text" /></p> <p>Other things to check are that your content area &amp; sidebar have explicit widths set and that they aren't too wide for the container they're in.</p> http://stackoverflow.com/questions/237079/how-to-get-file-creation-modification-date-times-in-python 7 How to get file creation & modification date/times in Python? Mark Biek 2008-10-25T21:54:56Z 2009-10-06T14:56:39Z <p>I have a script that needs to do some stuff based on file creation &amp; modification dates but has to run on Linux &amp; Windows.</p> <p>What's the best <strong>cross-platform</strong> way to get file creation &amp; modification date/times in Python?</p> http://stackoverflow.com/questions/1521528/regular-expression-for-removing-quotes-from-quoted-numbers-in-a-string 1 Regular expression for removing quotes from quoted numbers in a string Mark Biek 2009-10-05T18:05:29Z 2009-10-05T18:13:53Z <p>Let's say I have a bunch of text like this (simplified example, but you get the idea):</p> <pre><code>INSERT stuff(a,b,c) VALUES('1','a','1'); INSERT stuff(a,b,c) VALUES('2','b','1'); INSERT stuff(a,b,c) VALUES('3','c','2'); INSERT stuff(a,b,c) VALUES('4','d','2'); INSERT stuff(a,b,c) VALUES('5','e','3'); INSERT stuff(a,b,c) VALUES('6','f','3'); </code></pre> <p>I'm looking for a regular expression that removes the <code>''</code> from around every number but leaves the number alone.</p> <p>Here's the catch. <strong>You can't count on the quoted numbers being in the same position every time</strong>.</p> <p>There might be cases where it actually looks like this:</p> <pre><code>INSERT stuff(a,b,c) VALUES('6','3','f'); </code></pre> <p>Something that would work with VBScript and the RegExp object would be nice.</p> http://stackoverflow.com/questions/1444447/iterate-over-multiple-mysql-tables-export-1-table-from-each/1444493#1444493 3 Answer by Mark Biek for Iterate over multiple MySQL tables, export 1 table from each Mark Biek 2009-09-18T13:16:52Z 2009-09-18T13:22:55Z <p>I'm sure there's a more compact way to do it but this should work.</p> <pre><code>#!/bin/bash mysql -B -e "show databases" | egrep -v "Database|information_schema" | while read db; do echo "$db"; mysqldump $db TableName &gt; $db.sql done </code></pre> <p>You may need to tweak the <code>mysql</code> and <code>mysqldump</code> calls depending on your connection information.</p> http://stackoverflow.com/questions/1423777/how-can-i-check-if-a-radio-button-is-selected-in-javascript/1423783#1423783 7 Answer by Mark Biek for How can i check if a radio button is selected in javascript? Mark Biek 2009-09-14T20:37:56Z 2009-09-14T20:53:41Z <p>Let's pretend you have HTML like this</p> <pre><code>&lt;input type="radio" name="gender" id="gender_Male" value="Male" /&gt; &lt;input type="radio" name="gender" id="gender_Female" value="Female" /&gt; </code></pre> <p>For client-side validation, here's some Javascript to check which one is selected:</p> <pre><code>if(document.getElementById('gender_Male').checked) { //Male radio button is checked }else if(document.getElementById('gender_Female').checked) { //Female is checked } </code></pre> <p>The above could be made more efficient depending on the exact nature of your markup but that should be enough to get you started.</p> <p><hr /></p> <p>If you're just looking to see if <strong>any</strong> radio button is selected <strong>anywhere</strong> on the page, <a href="http://www.prototypejs.org/" rel="nofollow">PrototypeJS</a> makes it very easy.</p> <p>Here's a function that will return true if at least one radio button is selected somewhere on the page. Again, this might need to be tweaked depending on your specific HTML.</p> <pre><code>function atLeastOneRadio() { return ($$('input[type=radio]:checked').size() &gt; 0); } </code></pre> <p><hr /></p> <p>For server-side validation <em>(remember, you can't depend entirely on Javascript for validation!)</em>, it would depend on your language of choice, but you'd but checking the <code>gender</code> value of the request string.</p> http://stackoverflow.com/questions/1413703/recommendations-for-graphics-within-a-web-site/1413718#1413718 7 Answer by Mark Biek for Recommendations for graphics within a web site Mark Biek 2009-09-11T23:29:31Z 2009-09-11T23:29:31Z <p>This series of blog entries from the Yahoo User Interface Blog is an great source for dealing with images on a website:</p> <h3><a href="http://yuiblog.com/blog/2008/10/29/imageopt-1/" rel="nofollow">Image Optimization Part 1: The Importance of Images</a></h3> <h3><a href="http://yuiblog.com/blog/2008/11/04/imageopt-2/" rel="nofollow">Image Optimization Part 2: Selecting the Right File Format</a></h3> <h3><a href="http://yuiblog.com/blog/2008/11/14/imageopt-3/" rel="nofollow">Image Optimization Part 3: Four Steps to File Size Reduction</a></h3> <h3><a href="http://yuiblog.com/blog/2008/12/05/imageopt-4/" rel="nofollow">Image Optimization Part 4: Progressive JPEG…Hot or Not?</a></h3> <p>Another nice one is</p> <h3><a href="http://notjustahatrack.com/posts/image-usage-for-developers/" rel="nofollow">Image Usage for Developers</a></h3> http://stackoverflow.com/questions/1401941/script-to-connect-to-a-web-page/1401954#1401954 6 Answer by Mark Biek for Script to connect to a web page Mark Biek 2009-09-09T20:39:36Z 2009-09-09T20:39:36Z <p><a href="http://docs.python.org/library/urllib2.html" rel="nofollow">urllib2</a> will do what you want and it's pretty simple to use.</p> <pre><code>import urllib import urllib2 params = {'param1': 'value1'} req = urllib2.Request("http://someurl", urllib.urlencode(params)) res = urllib2.urlopen(req) data = res.read() </code></pre> <p>It's also nice because it's easy to modify the above code to do all sorts of other things like POST requests, Basic Authentication, etc.</p> http://stackoverflow.com/questions/1401387/bad-practice-in-php/1401399#1401399 1 Answer by Mark Biek for Bad practice in php? Mark Biek 2009-09-09T18:47:52Z 2009-09-09T18:47:52Z <p>I like to put that sort of thing in a function (or class) rather than an include.</p> <p>I find that makes it a bit more flexible (especially if you need to start passing arguments to it) and easier to re-use in other places.</p> http://stackoverflow.com/questions/1401354/masters-degree-or-self-study/1401381#1401381 1 Answer by Mark Biek for Masters degree or Self-Study? Mark Biek 2009-09-09T18:45:13Z 2009-09-09T18:45:13Z <ul> <li><a href="http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer">http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer</a></li> <li><a href="http://stackoverflow.com/questions/280203/will-a-masters-degree-increase-my-chances-of-getting-a-good-development-job">http://stackoverflow.com/questions/280203/will-a-masters-degree-increase-my-chances-of-getting-a-good-development-job</a></li> <li><a href="http://stackoverflow.com/questions/641996/is-it-the-right-time-to-get-a-masters-degree">http://stackoverflow.com/questions/641996/is-it-the-right-time-to-get-a-masters-degree</a></li> <li><a href="http://stackoverflow.com/questions/1401354/masters-degree-or-self-study">http://stackoverflow.com/questions/1401354/masters-degree-or-self-study</a></li> <li><a href="http://stackoverflow.com/questions/25620/is-a-masters-degree-overkill">http://stackoverflow.com/questions/25620/is-a-masters-degree-overkill</a></li> </ul> http://stackoverflow.com/questions/1395316/parameters-on-php-files-run-via-cron/1395335#1395335 5 Answer by Mark Biek for Parameters on php files run via cron Mark Biek 2009-09-08T17:50:03Z 2009-09-08T17:50:03Z <p><code>-q</code> refers to <em>quiet mode</em> where header information isn't displayed. This is now on by default but <code>-q</code> is still supported for backward compatability.</p> <pre><code>Usage: php [options] [-f] &lt;file&gt; [--] [args...] php [options] -r &lt;code&gt; [--] [args...] php [options] [-B &lt;begin_code&gt;] -R &lt;code&gt; [-E &lt;end_code&gt;] [--] [args...] php [options] [-B &lt;begin_code&gt;] -F &lt;file&gt; [-E &lt;end_code&gt;] [--] [args...] php [options] -- [args...] php [options] -a -a Run as interactive shell -c &lt;path&gt;|&lt;file&gt; Look for php.ini file in this directory -n No php.ini file will be used -d foo[=bar] Define INI entry foo with value 'bar' -e Generate extended information for debugger/profiler -f &lt;file&gt; Parse and execute &lt;file&gt;. -h This help -i PHP information -l Syntax check only (lint) -m Show compiled in modules -r &lt;code&gt; Run PHP &lt;code&gt; without using script tags &lt;?..?&gt; -B &lt;begin_code&gt; Run PHP &lt;begin_code&gt; before processing input lines -R &lt;code&gt; Run PHP &lt;code&gt; for every input line -F &lt;file&gt; Parse and execute &lt;file&gt; for every input line -E &lt;end_code&gt; Run PHP &lt;end_code&gt; after processing all input lines -H Hide any passed arguments from external tools. -s Display colour syntax highlighted source. -v Version number -w Display source with stripped comments and whitespace. -z &lt;file&gt; Load Zend extension &lt;file&gt;. args... Arguments passed to script. Use -- args when first argument starts with - or script is read from stdin --ini Show configuration file names --rf &lt;name&gt; Show information about function &lt;name&gt;. --rc &lt;name&gt; Show information about class &lt;name&gt;. --re &lt;name&gt; Show information about extension &lt;name&gt;. --ri &lt;name&gt; Show configuration for extension &lt;name&gt;. </code></pre> <p><code>php -l</code> is the one I use the most. It's nice, when editing, to be able to run a quick syntax check on a file (in vim, <code>:! php -l %</code>)</p> http://stackoverflow.com/questions/1381205/easy-login-script-without-database/1381269#1381269 0 Answer by Mark Biek for Easy login script without database Mark Biek 2009-09-04T19:59:43Z 2009-09-04T19:59:43Z <p>It's not an ideal solution but here's a quick and dirty example that shows how you could store login info in the PHP code:</p> <pre><code>&lt;?php session_start(); $userinfo = array( 'user1'=&gt;'password1', 'user2'=&gt;'password2' ); if(isset($_GET['logout'])) { $_SESSION['username'] = ''; header('Location: ' . $_SERVER['PHP_SELF']); } if(isset($_POST['username'])) { if($userinfo[$_POST['username']] == $_POST['password']) { $_SESSION['username'] = $_POST['username']; }else { //Invalid Login } } ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;Login&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;?php if($_SESSION['username']): ?&gt; &lt;p&gt;You are logged in as &lt;?=$_SESSION['username']?&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="?logout=1"&gt;Logout&lt;/a&gt;&lt;/p&gt; &lt;?php endif; ?&gt; &lt;form name="login" action="" method="post"&gt; Username: &lt;input type="text" name="username" value="" /&gt;&lt;br /&gt; Password: &lt;input type="password" name="password" value="" /&gt;&lt;br /&gt; &lt;input type="submit" name="submit" value="Submit" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1379339/consume-webservice-with-php/1379378#1379378 4 Answer by Mark Biek for Consume WebService with php Mark Biek 2009-09-04T13:46:36Z 2009-09-04T13:56:12Z <p>Here's a simple example which uses curl and the GET interface. </p> <pre><code>$zip = 97219; $url = "http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip=$zip"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($ch); curl_close($ch); $xmlobj = simplexml_load_string($result); </code></pre> <p>The <code>$result</code> variable contains XML which looks like this</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;NewDataSet&gt; &lt;Table&gt; &lt;CITY&gt;Portland&lt;/CITY&gt; &lt;STATE&gt;OR&lt;/STATE&gt; &lt;ZIP&gt;97219&lt;/ZIP&gt; &lt;AREA_CODE&gt;503&lt;/AREA_CODE&gt; &lt;TIME_ZONE&gt;P&lt;/TIME_ZONE&gt; &lt;/Table&gt; &lt;/NewDataSet&gt; </code></pre> <p>Once the XML is parsed into a SimpleXML object, you can get at the various nodes like this:</p> <pre><code>print $xmlobj-&gt;Table-&gt;CITY; </code></pre> <p><hr /></p> <p>If you want to get fancy, you could throw the whole thing into a class:</p> <pre><code>class GetInfoByZIP { public $zip; public $xmlobj; public function __construct($zip='') { if($zip) { $this-&gt;zip = $zip; $this-&gt;load(); } } public function load() { if($this-&gt;zip) { $url = "http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip={$this-&gt;zip}"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($ch); curl_close($ch); $this-&gt;xmlobj = simplexml_load_string($result); } } public function __get($name) { return $this-&gt;xmlobj-&gt;Table-&gt;$name; } } </code></pre> <p>which can then be used like this:</p> <pre><code>$zipInfo = new GetInfoByZIP(97219); print $zipInfo-&gt;CITY; </code></pre> http://stackoverflow.com/questions/1376748/php-compression-options/1376767#1376767 2 Answer by Mark Biek for PHP Compression Options Mark Biek 2009-09-04T01:08:08Z 2009-09-04T01:21:48Z <p>I don't have any personal experience with them but there's a whole section in the docs on <a href="http://us3.php.net/manual/en/refs.compression.php" rel="nofollow">Compression and Archive Extensions</a></p> <p>It looks like there are extensions for</p> <ul> <li><a href="http://us3.php.net/manual/en/book.bzip2.php" rel="nofollow">Bzip2</a></li> <li><a href="http://us3.php.net/manual/en/book.lzf.php" rel="nofollow">LZF</a></li> <li><a href="http://us3.php.net/manual/en/book.phar.php" rel="nofollow">Phar</a></li> <li><a href="http://us3.php.net/manual/en/book.rar.php" rel="nofollow">Rar</a></li> <li><a href="http://us3.php.net/manual/en/book.zip.php" rel="nofollow">Zip</a></li> <li><a href="http://us3.php.net/manual/en/book.zlib.php" rel="nofollow">Zlib</a></li> </ul> <p>If you're working directly with files on the server, the <a href="http://us3.php.net/manual/en/class.ziparchive.php" rel="nofollow">ZipArchive</a> class (that comes with the Zip extension) looks like it might be the easiest to use.</p> http://stackoverflow.com/questions/1215672/unable-to-communicate-with-javascript-from-flex-after-dymanically-loading-a-swf/1375630#1375630 0 Answer by Mark Biek for Unable to communicate with Javascript from Flex after dymanically loading a swf. Mark Biek 2009-09-03T19:59:57Z 2009-09-03T19:59:57Z <p>I ran into this exact problem and got around it in this (slightly icky) way using the Prototype <code>PeriodicalExecuter</code>:</p> <pre><code>Event.observe(window, 'load', function() { //Check to see if the flash function is available once per second. new PeriodicalExecuter( function(pe) { var flash = $('flashObject'); if(typeof flash.myFlashFunc == 'function'){ //At this point, the flash function is available pe.stop() } }, 1); }); </code></pre> <p>Updating to the latest version is probably the best way to go though. I'll have to try that on my end.</p> http://stackoverflow.com/questions/1375039/javascript-if-else-onclick/1375053#1375053 1 Answer by Mark Biek for Javascript if/else onclick? Mark Biek 2009-09-03T18:17:01Z 2009-09-03T18:17:01Z <p>First of all, you'll want to have IDs set on each <code>&lt;div&gt;</code> so you can get at them from Javascript.</p> <pre><code>&lt;a href="" onclick="showThis('test1');return false;"&gt;Test 1&lt;/a&gt; &lt;div id="test1"&gt; &lt;p&gt;some content&lt;/p&gt; &lt;/div&gt; &lt;a href="" onclick="showThis('test2');return false;"&gt;Test 2&lt;/a&gt; &lt;div id="test1"&gt; &lt;p&gt;some content&lt;/p&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;!-- if clicked on Test 1, display some message. And if clicked on Test 2, display some other message --&gt; &lt;/div&gt; </code></pre> <p>If you don't want the <strong>test1</strong> and <strong>test2</strong> divs to be visible add <code>style="display: none;"</code> after the <code>id=""</code> part of each <code>&lt;div&gt;</code>. <hr /></p> <p>Now I'm assuming that you want to take the contents of <strong>test1</strong> or <strong>test2</strong> and put those contents into the <strong>content</strong> div. Here's a little function that'll do it:</p> <pre><code>function showThis(id) { document.getElementById('content').innerHTML = document.getElementById(id).innerHTML; } </code></pre> http://stackoverflow.com/questions/1372446/what-firefox-extension-can-dump-http-responses/1374397#1374397 1 Answer by Mark Biek for What Firefox extension can dump HTTP responses? Mark Biek 2009-09-03T16:10:54Z 2009-09-03T16:10:54Z <p><a href="https://addons.mozilla.org/en-US/firefox/addon/6647" rel="nofollow">HttpFox</a> is one of my favorites.</p> http://stackoverflow.com/questions/1373006/how-can-i-display-this-alert-box-after-checking-if-my-array-of-checkbox-is-all-no/1373106#1373106 0 Answer by Mark Biek for How can i display this alert box after checking if my array of checkbox is all not checked Mark Biek 2009-09-03T12:28:32Z 2009-09-03T12:35:05Z <p>I find that <a href="http://www.prototypejs.org" rel="nofollow">PrototypeJS</a> makes this sort of thing very easy using the <code>$$()</code> function with a CSS selector to get the controls you need.</p> <p>This has the advantage of only looping over as many checkboxes are actually found so you don't have to worry about all of the loop edge conditions.</p> <p>This function will display an alert if none of the checkboxes are checked (or if no checkboxes are found) and will also return true or false depending on what it finds.</p> <pre><code>function checkstanddocument() { var ret = false; $$('#repo_document_form input[type="checkbox"][name="stands[]"]').each( function(checkbox) { if(checkbox.checked) { ret = true; throw $break; } }); if(!ret) { alert('Please select at least one stand.'); } return ret; } </code></pre> http://stackoverflow.com/questions/658939/python-equivalent-to-php-s 4 Python equivalent to "php -s" Mark Biek 2009-03-18T16:10:57Z 2009-08-27T12:08:56Z <p>As you may or may not know, you can generate a color syntax-higlighted HTML file from a PHP source file using <strong>php -s</strong>.</p> <p>I know about the <a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">syntaxhighlighter</a> that Stackoverflow uses and that's not really what I'm looking for. I'm looking for something will generate HTML output without Javascript.</p> Does anyone know of something equivalent to <strong><em>php</em></strong> -<strong><em>s</em></strong> for Python? http://stackoverflow.com/questions/1305853/how-can-i-make-my-match-non-greedy 4 How can I make my match non greedy? Mark Biek 2009-08-20T12:28:17Z 2009-08-20T12:50:19Z <p>I have a big HTML file that has lots of markup that looks like this:</p> <pre><code>&lt;p class="MsoNormal" style="margin: 0in 0in 0pt;"&gt; &lt;span style="font-size: small; font-family: Times New Roman;"&gt;stuff here&lt;/span&gt; &lt;/p&gt; </code></pre> <p>I'm trying to do a Vim search-and-replace to get rid of all <code>class=""</code> and <code>style=""</code> but I'm having trouble making the match ungreedy.</p> <p>My first attempt was this</p> <pre><code>%s/style=".*?"//g </code></pre> <p>but Vim doesn't seem to like the <code>?</code>. Unfortunately removing the <code>?</code> makes the match too greedy.</p> <p>How can I make my match ungreedy?</p> http://stackoverflow.com/questions/1293619/how-to-recognize-two-different-word-in-a-regex-without-grouping/1293648#1293648 1 Answer by Mark Biek for How to recognize two different word in a regex without grouping Mark Biek 2009-08-18T12:55:25Z 2009-08-18T12:55:25Z <p>I think this will do what you want. </p> <p>This returns the <em>Foo-</em> and <em>-NNN</em> parts as separate groups:</p> <pre><code>(Foo-ba[rz])(-\d+) </code></pre> <p>Getting the whole thing back as a single group can be done like this.</p> <pre><code>(Foo-ba[rz]-\d+) </code></pre> http://stackoverflow.com/questions/1258176/how-can-i-poll-a-php-page-using-javascript/1260564#1260564 0 Answer by Mark Biek for How can I poll a PHP page using javascript? Mark Biek 2009-08-11T14:00:11Z 2009-08-11T14:00:11Z <p><a href="http://www.prototypejs.org/" rel="nofollow">PrototypeJS</a> provides the very handy <a href="http://www.prototypejs.org/api/ajax" rel="nofollow">Ajax</a> and <a href="http://www.prototypejs.org/api/periodicalExecuter" rel="nofollow">PeriodicalExecuter</a> objects which do exactly what you want.</p> <p>In this example, the Ajax request is executed every 10 seconds. You could also easily make the Ajax call from the <code>onchange</code> of your <code>&lt;select&gt;</code> element.</p> <pre><code>function increment() { new Ajax.Request( '/content.php', { method: 'get', parameters: {}, onSuccess: function(response, jsonHeader) { //If you need to do something with a response, doe it here }, onFailure: function() { alert('Request failed because an error ocurred.'); } }); } new PeridodicalExecuter(function(pe) { //Call pe.stop() to stop the timer; increment(); }, 10); </code></pre> http://stackoverflow.com/questions/134099/are-pdo-prepared-statements-sufficient-to-prevent-sql-injection 9 Are PDO prepared statements sufficient to prevent SQL injection? Mark Biek 2008-09-25T15:43:35Z 2009-07-30T14:25:04Z <p>Let's say I have code like this:</p> <pre><code>$dbh = new PDO("blahblah"); $stmt = $dbh-&gt;prepare('SELECT * FROM users where username = :username'); $stmt-&gt;execute( array(':username' =&gt; $_REQUEST['username']) ); </code></pre> <p>The PDO documentation says</p> <blockquote> <blockquote> <blockquote> <blockquote> <p>The parameters to prepared statements don't need to be quoted; the driver handles it for you.</p> </blockquote> </blockquote> </blockquote> </blockquote> <p><strong>Is that truly all I need to do to avoid SQL injections? Is it really that easy?</strong></p> <p>You can assume MySQL if it makes a difference. Also, I'm really only curious about the use of prepared statements against SQL injection. In this context, I don't care about XSS or other possible vulnerabilities.</p> http://stackoverflow.com/questions/6023/what-are-good-tools-for-creating-compiled-html-help-files-chm 13 What are good tools for creating compiled HTML help files (.chm)? Mark Biek 2008-08-08T14:53:36Z 2009-07-27T18:20:59Z <p>I've seen a number of places recently that offer online HTML API documentation and also offer downloadable (usually .chm) help files.</p> <p>I really love using .chm help files, mainly because of the index tree on the left.</p> <p>What are the best tools for creating those types of files? Is there something that would allow me to have a bunch of HTML files that can be put online and also compiled into a .chm?</p> <p><em>edit (expanding the scope of my original question)</em></p> <p>All of the tools below look interesting, especially sandcastle which I'm downloading now.</p> <p>Are there any command-line tools for Linux that do this?</p> http://stackoverflow.com/questions/1930896/defining-a-class Comment by Mark Biek on Defining a class Mark Biek 2009-12-18T21:58:15Z 2009-12-18T21:58:15Z This is pretty unspecific. You'll have better luck if you show us what you've tried and ask more specific questions. This feels like trying to get people to do your homework for you. http://stackoverflow.com/questions/1829851/good-programming-language-for-a-rabbit Comment by Mark Biek on Good programming language for a rabbit? Mark Biek 2009-12-02T00:14:39Z 2009-12-02T00:14:39Z FWIW, I voted to close as &quot;Not a real question&quot;. http://stackoverflow.com/questions/1791507/make-variables-available-outside-function-in-php/1791527#1791527 Comment by Mark Biek on make variables available outside function in PHP ? Mark Biek 2009-11-24T17:13:29Z 2009-11-24T17:13:29Z Agreed. I'd recommend having the function return those values as an array rather than using globals. http://stackoverflow.com/questions/1710835/strange-ie7-printing-bug Comment by Mark Biek on Strange IE7 Printing Bug Mark Biek 2009-11-11T15:14:31Z 2009-11-11T15:14:31Z How about a screenshot? http://stackoverflow.com/questions/1708498/problem-positioning-a-logo-and-a-banner-in-firefox-using-css/1708612#1708612 Comment by Mark Biek on Problem positioning a logo and a banner in Firefox using CSS Mark Biek 2009-11-10T15:03:49Z 2009-11-10T15:03:49Z The borders are there just to make it easier to see where the divs are when they don't have any content in them. http://stackoverflow.com/questions/1708051/replace-the-td-tag/1708066#1708066 Comment by Mark Biek on Replace the TD tag Mark Biek 2009-11-10T13:46:53Z 2009-11-10T13:46:53Z In fact, there are certain cases where doing this kind of replacement can actually cause memory exceptions in IE. http://stackoverflow.com/questions/1702966/url-mod-rewrite/1702984#1702984 Comment by Mark Biek on URL Mod-Rewrite Mark Biek 2009-11-10T00:07:06Z 2009-11-10T00:07:06Z Like MalphasWats says, $_GET['service'] should do the trick. You might add a print_r($_GET); just to see what the contents of $_GET actually are. http://stackoverflow.com/questions/1702966/url-mod-rewrite/1702984#1702984 Comment by Mark Biek on URL Mod-Rewrite Mark Biek 2009-11-09T21:41:09Z 2009-11-09T21:41:09Z The first group of () is $1, the second $2, and so on. So you can capture multiple things and then use them in the rewrite part of the rule. http://stackoverflow.com/questions/1701720/im-looking-for-a-perl-friendly-versioning-solution-that-i-can-run-on-windows Comment by Mark Biek on I'm looking for a Perl-friendly versioning solution that I can run on Windows. Mark Biek 2009-11-09T15:25:55Z 2009-11-09T15:25:55Z Check out: VisualSVN <a href="http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system/218529#218529" rel="nofollow" title="suggestions please for a home version control system">stackoverflow.com/questions/218507/&hellip;</a> http://stackoverflow.com/questions/1683865/please-answer-my-queation Comment by Mark Biek on please answer my queation Mark Biek 2009-11-05T21:46:02Z 2009-11-05T21:46:02Z You'll have better luck if you try something and ask specific questions about what's not working. People aren't going to do your work for you. http://stackoverflow.com/questions/1673741/persisting-more-than-one-object-in-delphi-7 Comment by Mark Biek on Persisting more than one object in Delphi 7 Mark Biek 2009-11-04T14:44:59Z 2009-11-04T14:44:59Z @Ken Good catch. I completely missed that. Voted to close http://stackoverflow.com/questions/1651919/which-approach-is-best-for-preventing-a-sql-injection Comment by Mark Biek on Which approach is best for preventing a SQL injection? Mark Biek 2009-10-30T19:48:52Z 2009-10-30T19:48:52Z Dupe: <a href="http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php" rel="nofollow" title="best way to stop sql injection in php">stackoverflow.com/questions/60174/&hellip;</a> http://stackoverflow.com/questions/1650534/is-the-form-tag-necessary/1650583#1650583 Comment by Mark Biek on Is the form tag necessary? Mark Biek 2009-10-30T15:58:56Z 2009-10-30T15:58:56Z @John, excellent point. http://stackoverflow.com/questions/1630701/layout-problems-in-ie7/1630723#1630723 Comment by Mark Biek on Layout problems in IE7 Mark Biek 2009-10-27T20:49:35Z 2009-10-27T20:49:35Z Glad to hear it :) http://stackoverflow.com/questions/1630701/layout-problems-in-ie7/1630723#1630723 Comment by Mark Biek on Layout problems in IE7 Mark Biek 2009-10-27T18:37:45Z 2009-10-27T18:37:45Z There may be a better solution for your specific case but you could always use a Browser Conditional to just adjust the margins in IE: <a href="http://stackoverflow.com/questions/46124/is-there-a-list-of-browser-conditionals-for-use-including-stylesheets" rel="nofollow" title="is there a list of browser conditionals for use including stylesheets">stackoverflow.com/questions/46124/&hellip;</a>