User Jrgns - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T07:34:34Z http://stackoverflow.com/feeds/user/6681 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/201457/how-to-implement-url-pattern-interpreter-as-used-by-django-and-ror-in-php 3 How to implement URL pattern interpreter as used by Django and RoR in PHP Jrgns 2008-10-14T14:45:28Z 2009-10-17T13:11:32Z <p>What's the best way to implement a URL interpreter / dispatcher, such as found in <a href="http://docs.djangoproject.com/en/dev/topics/http/urls/?from=olddocs" rel="nofollow">Django</a> and RoR, in PHP?</p> <p>It should be able to interpret a query string as follows:</p> <ul> <li><code>/users/show/4</code> maps to <ul> <li><em>area</em> = <strong>Users</strong></li> <li><em>action</em> = <strong>show</strong></li> <li><em>Id</em> = <strong>4</strong></li> </ul></li> <li><code>/contents/list/20/10</code> maps to <ul> <li><em>area</em> = <strong>Contents</strong></li> <li><em>action</em> = <strong>list</strong></li> <li><em>Start</em> = <strong>20</strong></li> <li><em>Count</em> = <strong>10</strong></li> </ul></li> <li><code>/toggle/projects/10/active</code> maps to <ul> <li><em>action</em> = <strong>toggle</strong></li> <li>area = <strong>Projects</strong></li> <li><em>id</em> = <strong>10</strong></li> <li><em>field</em> = <strong>active</strong></li> </ul></li> </ul> <p>Where the query string can be a specified GET / POST variable, or a string passed to the interpreter.</p> <p>Edit: I'd prefer an implementation that does not use mod_rewrite.</p> <p>Edit: This question is not about clean urls, but about interpreting a URL. Drupal uses mod_rewrite to redirect requests such as <a href="http://host/node/5" rel="nofollow">http://host/node/5</a> to <a href="http://host/?q=node/5" rel="nofollow">http://host/?q=node/5</a>. It then interprets the value of $_REQUEST['q']. I'm interested in the interpreting part.</p> http://stackoverflow.com/questions/1571997/workarounds-for-phps-arrayreduce-integer-third-parameter 0 Workarounds for PHP's array_reduce integer third parameter Jrgns 2009-10-15T12:15:16Z 2009-10-16T04:51:13Z <p>For <a href="http://bugs.php.net/bug.php?id=45700" rel="nofollow">some</a> or <a href="http://bugs.php.net/bug.php?id=42566" rel="nofollow">other</a> reason, the <a href="http://us2.php.net/manual/en/function.array-reduce.php" rel="nofollow"><code>array_reduce</code></a> function in PHP only accepts integers as it's third parameter. This third parameter is used as a starting point in the whole reduction process:</p> <pre><code>function int_reduc($return, $extra) { return $return + $extra; } $arr = array(10, 20, 30, 40); echo array_reduce($arr, 'int_reduc', 0); //Will output 100, which is 0 + 10 + 20 + 30 + 40 function str_reduc($return, $extra) { return $return .= ', ' . $extra; } $arr = array('Two', 'Three', 'Four'); echo array_reduce($arr, 'str_reduc', 'One'); //Will output 0, Two, Three, Four </code></pre> <p>In the second call, the <code>'One'</code> gets converted to it's integer value, which is 0, and then used.</p> <p><strong>Why does PHP do this!?</strong></p> <p>Any workarounds welcome...</p> http://stackoverflow.com/questions/506705/php-get-classname-from-static-call-in-extended-class/1542045#1542045 0 Answer by Jrgns for PHP: get classname from static call in extended class. Jrgns 2009-10-09T06:07:28Z 2009-10-09T06:07:28Z <p>It's not the ideal solution, but it works on PHP &lt; 5.3.0.</p> <p>The code was copied from <a href="http://www.septuro.com/2009/07/php-5-2-late-static-binding-get%5Fcalled%5Fclass-and-self-new-self/" rel="nofollow">septuro.com</a></p> <pre><code>if(!function_exists('get_called_class')) { class class_tools { static $i = 0; static $fl = null; static function get_called_class() { $bt = debug_backtrace(); if (self::$fl == $bt[2]['file'].$bt[2]['line']) { self::$i++; } else { self::$i = 0; self::$fl = $bt[2]['file'].$bt[2]['line']; } $lines = file($bt[2]['file']); preg_match_all('/([a-zA-Z0-9\_]+)::'.$bt[2]['function'].'/', $lines[$bt[2]['line']-1], $matches); return $matches[1][self::$i]; } } function get_called_class() { return class_tools::get_called_class(); } } </code></pre> http://stackoverflow.com/questions/368813/readonly-select-tag 2 Readonly SELECT tag Jrgns 2008-12-15T15:59:09Z 2009-10-02T01:59:11Z <p>According to HTML specs, the <code>select</code> tag in HTML doesn't have a <code>readonly</code> attribute, only a <code>disabled</code> attribute. So if you want to keep the user from changing the dropdown, you have to use <code>disabled</code>.</p> <p>The only problem is that disabled HTML form inputs don't get included in the POST / GET data.</p> <p>What's the best way to emulate the <code>readonly</code> attribute for a <code>select</code> tag, and still get the POST data?</p> http://stackoverflow.com/questions/1397920/interpreting-accept-headers-as-intended-in-ie-and-webkit 1 Interpreting Accept Headers as intended in IE and Webkit Jrgns 2009-09-09T06:49:54Z 2009-09-29T13:00:00Z <p>I developed a web app that responds with data in the format as specified by the client in the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1" rel="nofollow">HTTP Accept Headers</a>. Everything worked fine while using Firefox, but when I wanted to check my CSS / HTML on Chrome and IE, both of them wanted to download the index page, as if it's an unknown content type.</p> <p>After some research I found <a href="http://www.newmediacampaigns.com/page/browser-rest-http-accept-headers" rel="nofollow">this article</a>, which states that IE sends out a lot of crud in it's HTTP Accept headers, amongst others a list of <code>image/*</code> content types right at the start.</p> <p>This caused my web app to try to send the index page as an <code>image/jpeg</code>.</p> <p><strong>So how do I know when to ignore and when to use the Accept Headers?</strong></p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/1276951#1276951 1 Answer by Jrgns for Should a function have only one return statement ? Jrgns 2009-08-14T09:40:24Z 2009-08-14T09:40:24Z <p>I force myself to use only one <code>return</code> statement, as it will in a sense generate code smell. Let me explain:</p> <pre><code>function isCorrect($param1, $param2, $param3) { $toret = false; if ($param1 != $param2) { if ($param1 == ($param3 * 2)) { if ($param2 == ($param3 / 3)) { $toret = true; } else { $error = 'Error 3'; } } else { $error = 'Error 2'; } } else { $error = 'Error 1'; } return $toret; } </code></pre> <p><em>(The conditions are arbritary...)</em></p> <p>The more conditions, the larger the function gets, the more difficult it is to read. So if you're attuned to the code smell, you'll realise it, and want to refactor the code. Two possible solutions are:</p> <ul> <li>Multiple returns</li> <li>Refactoring into separate functions</li> </ul> <p><strong>Multiple Returns</strong></p> <pre><code>function isCorrect($param1, $param2, $param3) { if ($param1 == $param2) { $error = 'Error 1'; return false; } if ($param1 != ($param3 * 2)) { $error = 'Error 2'; return false; } if ($param2 != ($param3 / 3)) { $error = 'Error 3'; return false; } return true; } </code></pre> <p><strong>Separate Functions</strong></p> <pre><code>function isEqual($param1, $param2) { return $param1 == $param2; } function isDouble($param1, $param2) { return $param1 == ($param2 * 2); } function isThird($param1, $param2) { return $param1 == ($param2 / 3); } function isCorrect($param1, $param2, $param3) { $toret = false; if (!isEqual($param1, $param2) &amp;&amp; isDouble($param1, $param3) &amp;&amp; isThird($param2, $param3) ) { $toret = true; } return $toret; } </code></pre> <p>Granted, it is longer and a bit messy, but in the process of refactoring the function this way, we've</p> <ul> <li>created a number of reusable functions,</li> <li>made the function more human readable, and</li> <li>the focus of the functions is on why the values are correct.</li> </ul> http://stackoverflow.com/questions/139136/how-do-i-get-people-interested-in-my-open-source-projects 8 How do I get people interested in my open source projects? Jrgns 2008-09-26T12:32:36Z 2009-08-05T12:51:44Z <p>I've been working on two personal projects that I now <a href="https://launchpad.net/egogga" rel="nofollow">posted</a> on <a href="https://launchpad.net/yaphpfter" rel="nofollow">Launchpad</a> with the idea to get some input from the broader community.</p> <p>How do I get people to actually run or least look at the code?</p> <p>Tips on what would make it easier for people to try out an opensource web app is also welcome.</p> http://stackoverflow.com/questions/189113/how-do-i-get-current-page-full-url-in-php/1229827#1229827 0 Answer by Jrgns for How do I get current page full URL in PHP Jrgns 2009-08-04T20:41:45Z 2009-08-04T20:59:40Z <p>I use the following function to get the current, full URL. This should work on IIS and Apache.</p> <pre><code>function get_current_url() { $protocol = 'http'; if ($_SERVER['SERVER_PORT'] == 443 || (!empty($_SERVER['HTTPS']) &amp;&amp; $_SERVER['HTTPS'] == 'on')) { $protocol .= 's'; $protocol_port = $_SERVER['SERVER_PORT']; } else { $protocol_port = 80; } $host = $_SERVER['HTTP_HOST']; $port = $_SERVER['SERVER_PORT']; $request = $_SERVER['PHP_SELF']; $query = substr($_SERVER['argv'][0], strpos($_SERVER['argv'][0], ';') + 1); $toret = $protocol . '://' . $host . ($port == $protocol_port ? '' : ':' . $port) . $request . (empty($query) ? '' : '?' . $query); return $toret; } </code></pre> http://stackoverflow.com/questions/1222482/mysql-join-excluding-certain-records/1222549#1222549 0 Answer by Jrgns for MySQL Join excluding certain records? Jrgns 2009-08-03T14:05:41Z 2009-08-03T14:05:41Z <p>I usually add a condition to the <code>WHERE</code> clause to check that the primary if in the table being joined is not null.</p> http://stackoverflow.com/questions/1186957/common-programming-mistakes-for-php-developers-to-avoid/1192184#1192184 6 Answer by Jrgns for Common programming mistakes for PHP developers to avoid? Jrgns 2009-07-28T06:13:35Z 2009-07-28T06:13:35Z <p><strong>Incorrect testing of <code>strpos</code> / <code>stripos</code></strong></p> <pre><code>if (strpos('Needle in a haystack', 'Needle')) { echo "There's a needle in the haystack!"; } else { echo "There's no needle..."; } </code></pre> <p>This will output "There's no needle...", as strpos will return <code>0</code>, which is interpreted as false.</p> <p>Should be:</p> <pre><code>if (strpos('Needle in a haystack', 'Needle') !== false) { </code></pre> <p>OR</p> <pre><code>if (strpos('Needle in a haystack', 'Needle') &gt;= 0 ) { </code></pre> http://stackoverflow.com/questions/1006891/how-feasible-is-a-daemon-written-in-php-using-ignoreuser-abort-and-settimelim 1 How feasible is a daemon written in PHP, using ignore_user abort and set_time_limit(0) Jrgns 2009-06-17T13:06:49Z 2009-07-24T09:06:19Z <p>I'm mucking about with daemons, and wondered how feasible (in terms of memory and cpu usage, and reliability) it is to do this using PHP:</p> <pre><code>&lt;?php // Ignore user aborts and allow the script // to run forever ignore_user_abort(true); set_time_limit(0); $fp = fopen('loop.log', 'w'); fwrite($fp, date('Y-m-d H:i:s') . ' Started' . PHP_EOL); while(1) { fwrite($fp, date('Y-m-d H:i:s') . ' Looped' . PHP_EOL); if (file_exists('loop.stop')) { break; } // Sleep for 100 seconds sleep(100); } fwrite($fp, date('Y-m-d H:i:s') . ' Stopped' . PHP_EOL); fclose($fp); </code></pre> <p>This simple example (adapted from the PHP manual for <a href="http://www.php.net/manual/en/function.ignore-user-abort.php" rel="nofollow">ignore_user_abort</a>) is just the container script. The actual functionality will be placed inside the <code>while</code> loop.</p> <p>I've got this script running on my laptop for 7 hours now, and it looks fine, but it doesn't do much. Has anyone else tried this?</p> http://stackoverflow.com/questions/1167718/if-i-use-jquery-must-my-web-app-be-gpld 4 If I use jQuery, must my Web App be GPL'd? Jrgns 2009-07-22T19:39:55Z 2009-07-22T19:46:03Z <p>I'm working on a Web App Framework that I'd like to put under the <a href="http://www.eclipse.org/org/documents/epl-v10.php" rel="nofollow">Eclipse Public License</a> for various reasons. The only problem is that I want to include jQuery in the framework, and that is under the <a href="http://docs.jquery.com/License" rel="nofollow">GPL and / or MIT licenses</a>.</p> <p><strong>Edit 1:</strong> The core of the framework is coded in PHP, using jQuery to jazz up the client side of things. I'm not too worried about the JavaScript being out there. My main concern is the PHP.</p> <p>Does this mean that I can only license my framework under the GPL or MIT License?</p> <p><em>I understand that no one here is necessarily a laywer, and won't hold anyone responsible or accountable</em></p> http://stackoverflow.com/questions/127765/php-optimization-tips 10 PHP Optimization Tips Jrgns 2008-09-24T15:12:44Z 2009-07-17T15:19:27Z <p>I'm looking for PHP Optimization tips. Coding practices and other methodologies which will make my PHP execute faster. One tip per answer, please, and include why it makes the code faster!</p> <p>This is not about HTML or Javascript execution, but purely server side PHP execution.</p> http://stackoverflow.com/questions/1139360/php-cookie-security-question/1139863#1139863 0 Answer by Jrgns for PHP Cookie Security Question Jrgns 2009-07-16T19:44:36Z 2009-07-16T19:44:36Z <p>One of the safest ways is to use the <a href="http://www.php.net/manual/en/book.pdo.php" rel="nofollow">PDO MySQL</a> functions, which implements parameters:</p> <pre><code>$db = new PDO('mysql:host=hostname;dbname=defaultDbName', 'username', 'password'); $stmt = $db-&gt;prepare('SELECT term,definition FROM glossary WHERE term = :wotd'); if ($stmt) { if ($stmt-&gt;execute(array(':wotd' =&gt; $word_of_the_day))) { //This is safe for any input method $info = $stmt-&gt;fetchAll(); foreach($info as $row) { //Whatever } } } </code></pre> <p>The PDO drivers does the correct escaping / quoting according to the data type in the table.</p> http://stackoverflow.com/questions/225150/are-there-any-pitfalls-things-you-need-to-know-when-changing-from-myisam-to-inn 4 Are there any pitfalls / things you need to know when changing from MyISAM to InnoDB Jrgns 2008-10-22T10:24:59Z 2009-06-26T16:04:00Z <p>One of my projects use the MyISAM engine in MySQL, but I'm considering changing it to InnoDB as I need transaction support here and there.</p> <ul> <li>What should I look at or consider before doing this? </li> <li>Can I just change the engine, or should the data be prepared for it?</li> </ul> http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html 24 What's the best way to separate PHP Code and HTML? Jrgns 2008-09-15T13:02:38Z 2009-06-10T14:07:47Z <p>I really don't like mixing PHP and HTML. Mixing them makes it difficult to maintain both the PHP and the HTML, and it just makes sense to keep the two apart.</p> <p>See also the <a href="http://stackoverflow.com/questions/62605/php-as-a-template-language-or-some-other-php-templating-script">question</a> on whether PHP is a good enough templating system on its own.</p> <p>What's the best way to do it?</p> http://stackoverflow.com/questions/937912/writing-a-php-file-to-read-from-csv-and-execute-sql-query/938090#938090 1 Answer by Jrgns for Writing a PHP file to read from CSV and execute SQL Query Jrgns 2009-06-02T06:02:39Z 2009-06-02T06:02:39Z <p>Well done on learning :) </p> <p>You should perhaps now learn about <a href="http://www.php.net/pdo" rel="nofollow">PDO</a> in PHP, as it's (in my opinion) the best, safest and fastest way to execute MySQL queries in PHP:</p> <pre><code>&lt;?php $fin = fopen('catalog_product_entity.csv','r') or die('cant open file'); try { $link = new PDO('mysql:dbname=m118;host=localhost', 'm118', 'pw'); echo 'Connection succeeded &lt;br /&gt;' . PHP_EOL; $stmt = $db-&gt;prepare('UPDATE catalog_product_entity SET sku = :sku WHERE entity_id = :id'); //Only give the length parameter if you **KNOW** that no line will be longer than that while (($data=fgetcsv($fin,1000,","))!==FALSE) { if ($stmt-&gt;execute(array(':sku' =&gt; $data[1], ':id' =&gt; $data[0]))) { echo 'Record updated &lt;br /&gt;' . PHP_EOL; } else { $err = $stmt-&gt;errorInfo(); echo 'Update Failed: ' . $err[2] . PHP_EOL; } } } catch (PDOException $e) { echo 'Connection failed: ' . $e-&gt;getMessage(); } fclose($fin); </code></pre> <p>The PDO script has the following advantages over yours:</p> <ul> <li>It's safer: PDO automatically quotes the data being inserted as needed. This prevents SQL injection attacks.</li> <li>It's faster: PDO caches the query (in the prepare), and then uses the parameters passed in execute.</li> <li>It's portable: PDO can connect to various types DB's, not just MySQL, so if you need to switchs DB's, its much easier.</li> </ul> http://stackoverflow.com/questions/933711/bazaar-plugin-list-of-modified-files-on-pre-commit-hook 0 Bazaar plugin: List of modified files on pre-commit hook Jrgns 2009-06-01T06:04:15Z 2009-06-01T08:34:44Z <p>I want to write a Bazaar plugin that performs some actions one the modified files before they are committed. Things like checking for syntax errors, and warning the commiter if there are still TODO's in the file.</p> <p>How do I get a list of the modified files in a Bazaar plugin?</p> http://stackoverflow.com/questions/918954/mysql-string-replace/918981#918981 1 Answer by Jrgns for MySQL string replace Jrgns 2009-05-28T02:45:18Z 2009-05-28T02:45:18Z <p>Your PHP option: (I'm assuming the fetched row is in <code>$row</code>)</p> <pre><code>$row['Field'] = explode('/', $row['Field']); //Remove the empty elements $row['Field'] = array_filter($row['Field']); $row['Field'] = implode('/', $row['Field']); </code></pre> http://stackoverflow.com/questions/871858/php-pass-variable-to-next-page/872522#872522 10 Answer by Jrgns for PHP Pass variable to next page Jrgns 2009-05-16T14:24:19Z 2009-05-16T14:29:30Z <p>HTML / HTTP is stateless, in other words, what you did / saw on the previous page, is completely disconnected with the current page. <em>Except</em> if you use something like sessions, cookies or GET / POST variables. Sessions and cookies are quite easy to use, with session being by far more secure than cookies. More secure, but not completely secure.</p> <p><strong>Session:</strong></p> <pre><code>//On page 1 $_SESSION['varname'] = $var_value; //On page 2 $var_value = $_SESSION['varname']; </code></pre> <p>Remember to run the <code>session_start()</code> statement on both these pages before you try to access the <code>$_SESSION</code> array, and also before any output is sent to the browser.</p> <p><strong>Cookie:</strong></p> <pre><code>//One page 1 $_COOKIE['varname'] = $var_value; //On page 2 $var_value = $_COOKIE['varname']; </code></pre> <p>The big difference between sessions and cookies are that the value of the variable will be stored on the server if you're using sessions, and on the client if you're using cookies. I can't think of any good reason to use cookies instead of sessions, except if you want data to persist between sessions, but even then it's perhaps better to store it in a DB, and retrieve it based on a username or id.</p> <p><strong>GET and POST</strong></p> <p>You can either add the variable in the link to the next page:</p> <pre><code>&lt;a href="page2.php?varname=&lt;?php echo $var_value ?&gt;"&gt;Page2&lt;/a&gt; </code></pre> <p>This will create a GET variable, or include a hidden field in a form that submits to page two:</p> <pre><code>&lt;form method="get" action="page2.php"&gt; &lt;input type="hidden" name="varname" value="var_value"&gt; &lt;input type="submit"&gt; &lt;/form&gt; </code></pre> <p>And then on page two</p> <pre><code>//Using GET $var_value = $_GET['varname']; //Using POST $var_value = $_POST['varname']; //Using GET, POST or COOKIE. $var_value = $_REQUEST['varname']; </code></pre> <p>Just change the method for the form to <code>post</code> if you want to do it via post. Both are equally insecure, although GET is easier to hack.</p> <p>The fact that each new request is, except for session data, a totally new instance of the script caught me when I first started coding in PHP. Once you get used to it, it's quite simple though.</p> http://stackoverflow.com/questions/867922/unite-two-mysql-queries-with-a-union-or-programmatically 1 Unite two MySQL queries with a UNION or programmatically Jrgns 2009-05-15T10:31:55Z 2009-05-16T13:43:35Z <p>I've got two MySQL queries that both insert data into a table. Both have the following format:</p> <pre><code>CREATE TABLE IF NOT EXISTS `data` ( `id` BIGINT NOT NULL AUTO_INCREMENT UNIQUE, PRIMARY KEY (`id`) ) SELECT `field1`, `field2` WHERE `active` = 1 </code></pre> <p>The only differences between the two queries are how <code>field1</code> and <code>field2</code> are determined, and some minor differences in the conditions clause. Both run up to 12K and more records.</p> <p>Now, what will be more efficient:</p> <p>A. Run both queries separately:</p> <pre><code>if (mysql_query($query1)) { return mysql_query($query2); } return false; </code></pre> <p>B. OR combine the two queries with a UNION, and run once:</p> <pre><code>$query = 'SELECT `field1`, `field2` WHERE `active` = 1 UNION SELECT DO_ONE(`field1`), DO_TWO(`field2`) WHERE `active` = 1 ORDER BY `field1`'; return mysql_query('CREATE TABLE IF NOT EXISTS `data` ( `id` BIGINT NOT NULL AUTO_INCREMENT UNIQUE, PRIMARY KEY (`id`) ) ' . $query) </code></pre> <p>The data from the one query is useless without the data from the other, so both need to succeed. <code>DO_ONE</code> and <code>DO_TWO</code> are user defined MySQL functions that change the field data according to some specs.</p> http://stackoverflow.com/questions/249432/whats-the-reasoning-behind-the-different-brace-forms 4 Whats the reasoning behind the different brace forms? Jrgns 2008-10-30T06:47:35Z 2009-05-12T18:00:41Z <p>I'm reading through the <a href="http://framework.zend.com/manual/en/coding-standard.coding-style.html" rel="nofollow">Zend Framework coding standards</a>, where they state that curly brace after a Class definitions should be on the next line, the "one true brace form".</p> <pre><code>class MyClass { function.... } </code></pre> <p>I usually have the braces on the same line:</p> <pre><code>class OtherClass { function ... } </code></pre> <p>What's the reason for putting the brace on the next line? Or using any other style, for that matter?</p> http://stackoverflow.com/questions/848788/how-to-ensure-access-to-my-web-service-from-my-code-only/850990#850990 0 Answer by Jrgns for How to ensure access to my web service from my code only? Jrgns 2009-05-12T03:04:41Z 2009-05-12T03:04:41Z <p>As some of the answers have stated, closing your web service off to everyone else will be a major hassle. The best you can hope for is to make it easier for the hackers to use another web service, than to use yours...</p> <p>Another suggestion to do this, is to generate random numbers from a <a href="http://en.wikipedia.org/wiki/Random%5Fseed" rel="nofollow">random seed</a> on both the server and the client. The server would need to track where in the sequence of random numbers all of the clients are, and match that number to the one sent by the client. </p> <p>The client would also have to register to be given access to the server. This would also serve as a authentication mechanism. </p> <p>So:</p> <pre><code>//Client code: $sequence = file_get_contents('sequence.txt'); $seed = file_get_contents('seed.txt'); $sequence++; //Generate the $sequence-th random number srand($seed); for ($i = 0; $i &lt;= $sequence; $i++) { $num = rand(); } //custom fetch function get_info($main_url . '?num=' . $num . '&amp;id' = $my_id); </code></pre> <p>This will generate a request similiar to this:</p> <p><code>http://webservice.com/get_info.php?num=3489347&amp;id=3</code></p> <pre><code>//Server Code: (I'm used to PHP) //Get the ID and the random number $id = (int)$_REQUEST['id']; $rand = (int)$_REQUEST['num']; $stmt = $db-&gt;prepare('SELECT `sequence`, `seed` FROM `client_list` WHERE `id` = :id'); if ($stmt-&gt;execute(array(':id' =&gt; $id)) { list($sequence, $seed) = $stmt-&gt;fetch(PDO::FETCH_ASSOC); } $sequence++; //Generate the $sequence-th random number srand($seed); for ($i = 0; $i &lt;= $sequence; $i++) { $num = rand(); } if ($num == $rand) { //Allow Access } else { //Deny Access } </code></pre> <p>By using a a different seed for each client, you ensure that hackers can't <em>predict</em> a random number by tracking previous numbers used.</p> http://stackoverflow.com/questions/849335/what-do-you-do-for-inspiration-when-you-get-programmers-block/849391#849391 0 Answer by Jrgns for What do you do for inspiration when you get programmers block? Jrgns 2009-05-11T18:24:58Z 2009-05-11T18:24:58Z <p>Apart from my serious projects, I have a number of pet projects - non mission critical projects which usually contain some kind of new technology or some aspect that I want to learn. </p> <p>It needs to be fun, and interesting, and not take up too much time, otherwise the serious projects won't get their due attention!</p> http://stackoverflow.com/questions/61401/hidden-features-of-php/62525#62525 42 Answer by Jrgns for Hidden Features of PHP? Jrgns 2008-09-15T12:51:35Z 2009-05-09T21:09:12Z <p>Variable variables and functions without a doubt!</p> <pre><code>$foo = 'bar'; $bar = 'foobar'; echo $$foo; //This outputs foobar function bar() { echo 'Hello world!'; } function foobar() { echo 'What a wonderful world!'; } $foo(); //This outputs Hello world! $$foo(); //This outputs What a wonderful world! </code></pre> <p>The same concept applies to object parameters ($some_object->$some_variable);</p> <p>Very, very nice. Make's coding with loops and patterns very easy, and it's faster and more under control than eval (Thanx @Ross &amp; @Joshi Spawnbrood!).t</p> http://stackoverflow.com/questions/255436/parse-accept-header/784940#784940 1 Answer by Jrgns for Parse Accept Header Jrgns 2009-04-24T08:16:20Z 2009-04-24T08:16:20Z <p>I've <a href="http://jrgns.net/parse%5Fhttp%5Faccept%5Fheader" rel="nofollow">written a parser</a> in PHP. It's not complex, but it will give you an array of mime types in order of preference.</p> http://stackoverflow.com/questions/751916/user-defined-mysql-function-not-accessible-with-php-pdo-connection 0 User defined MySQL function not accessible with PHP PDO connection Jrgns 2009-04-15T14:15:31Z 2009-04-15T16:41:08Z <p>I've got a trivial MySQL function:</p> <pre><code>DELIMITER $$ DROP FUNCTION IF EXISTS `mydb`.`CALC` $$ CREATE FUNCTION `mydb`.`CALC_IT`(Flag VARCHAR(1), One FLOAT, Other FLOAT) RETURNS FLOAT BEGIN IF One IS NULL THEN RETURN 0; END IF; IF Other IS NULL THEN RETURN 0; END IF; IF Flag = 'Y' THEN RETURN Other - One; ELSE RETURN Other END IF; END $$ DELIMITER ; </code></pre> <p>And it's called in a query from PHP using a PDO connection:</p> <pre><code>$query = 'SELECT CALC_IT(`Flag`, `One`, `Two`) FROM `mydb`.`table` WHERE `Condition` = 1'; $db = new PDO('mysql:host=localhost', 'user', 'pass'); $stmt = $db-&gt;prepare($query); if (!$stmt-&gt;execute()) { var_dump($stmt-&gt;errorInfo()); } </code></pre> <p>But, it reports the following:</p> <pre><code>array 0 =&gt; string '42000' (length=5) 1 =&gt; int 1305 2 =&gt; string 'FUNCTION CALC_IT does not exist' (length=37) </code></pre> <p>And, if you try it with the legacy Mysql code, it works:</p> <pre><code>$db = mysql_connect('localhost', 'user', 'pass'); $result = mysql_query($query); if (mysql_error()) { var_dump(mysql_error()); } </code></pre> <p>The query also works if you try it with any other mysql client.</p> <p>So <strong>why doesn't <em>some</em> user defined MySQL functions work in PHP's PDO library?</strong></p> http://stackoverflow.com/questions/100898/browser-detection 2 Browser Detection Jrgns 2008-09-19T10:11:55Z 2009-04-14T17:44:09Z <p>What's the best / simplest / most accurate way to detect the browser of a user?</p> <p>Ease of extendability and implementation is a plus.</p> <p>The less technologies used, the better.</p> <p>The solution can be server side, client side, or both. The results should eventually end up at the server, though.</p> <p>The solution can be framework agnostic.</p> <p>The solution will only be used for reporting purposes.</p> http://stackoverflow.com/questions/533965/why-is-security-through-obscurity-a-bad-idea 20 Why is security through obscurity a bad idea? Jrgns 2009-02-10T20:10:07Z 2009-04-07T15:38:34Z <p>I recently came across a system where all of the DB connections were managed by routines obscured in various ways, including base 64 encoding, md5sums and various other techniques.</p> <p>Is it just me, or is this overkill? What are the alternatives?</p> http://stackoverflow.com/questions/67021/how-do-i-export-the-bazaar-history-of-a-subfolder 0 How do I export the Bazaar history of a subfolder Jrgns 2008-09-15T21:12:17Z 2009-02-27T20:54:50Z <p>I'm coding a framework along with a project which uses this framework. The project is a Bazaar repository, with the framework in a subfolder below the project.</p> <p>I want to give the framework a Bazaar repository of its own. How do I do it?</p> http://stackoverflow.com/questions/201457/how-to-implement-url-pattern-interpreter-as-used-by-django-and-ror-in-php/328109#328109 Comment by Jrgns on How to implement URL pattern interpreter as used by Django and RoR in PHP Jrgns 2009-10-16T22:14:42Z 2009-10-16T22:14:42Z I'm not sure I understand what you're trying to say? http://stackoverflow.com/questions/1571997/workarounds-for-phps-arrayreduce-integer-third-parameter/1572055#1572055 Comment by Jrgns on Workarounds for PHP's array_reduce integer third parameter Jrgns 2009-10-16T22:12:46Z 2009-10-16T22:12:46Z The reaon I want to use the function isn't quite clear in my examples. It's quite complicated, BUT I need the third parameter. http://stackoverflow.com/questions/1397920/interpreting-accept-headers-as-intended-in-ie-and-webkit/1399233#1399233 Comment by Jrgns on Interpreting Accept Headers as intended in IE and Webkit Jrgns 2009-09-09T14:00:29Z 2009-09-09T14:00:29Z Whitelist: Yea, true, the only problem is that User-Agent headers are sometimes untrustworthy, so I try to stay away from them. Order of elements: The parser I use assumes that if no preference is given, the first takes precedence. http://stackoverflow.com/questions/1397920/interpreting-accept-headers-as-intended-in-ie-and-webkit Comment by Jrgns on Interpreting Accept Headers as intended in IE and Webkit Jrgns 2009-09-09T13:57:15Z 2009-09-09T13:57:15Z It matches against image/jpeg, as the app can serve images as well. It's in the question :P http://stackoverflow.com/questions/613680/have-i-covered-all-bases-with-security-when-echoing-a-server-variable-to-the-pag/628898#628898 Comment by Jrgns on Have I covered all bases with security when echo'ing a server variable to the page? Jrgns 2009-09-03T06:29:52Z 2009-09-03T06:29:52Z It definitely has some problems on some versions of IIS, if combined with a &lt;input type=&quot;file&quot;, IIRC... http://stackoverflow.com/questions/1286101/post-a-json-object-to-server-using-php-jquery Comment by Jrgns on Post a JSON object to server using PHP & Jquery Jrgns 2009-08-17T06:18:24Z 2009-08-17T06:18:24Z Also add any errors PHP might show. http://stackoverflow.com/questions/1167718/if-i-use-jquery-must-my-web-app-be-gpld/1167735#1167735 Comment by Jrgns on If I use jQuery, must my Web App be GPL'd? Jrgns 2009-07-22T20:04:41Z 2009-07-22T20:04:41Z And that's why I love SO.... Quick, quality answers! http://stackoverflow.com/questions/1167718/if-i-use-jquery-must-my-web-app-be-gpld/1167735#1167735 Comment by Jrgns on If I use jQuery, must my Web App be GPL'd? Jrgns 2009-07-22T20:00:28Z 2009-07-22T20:00:28Z So as long as I don't change / extend jQuery, only use it, I can license the rest of the code (including my own JS) under the EPL? http://stackoverflow.com/questions/1139639/previewing-html-code-in-an-html-page/1139673#1139673 Comment by Jrgns on previewing HTML code in an HTML page Jrgns 2009-07-16T19:33:41Z 2009-07-16T19:33:41Z @mgroves Just because it works, doesn't mean it's the correct answer. Answers that will continue to work is the best :) http://stackoverflow.com/questions/61401/hidden-features-of-php/62525#62525 Comment by Jrgns on Hidden Features of PHP? Jrgns 2009-07-10T19:23:14Z 2009-07-10T19:23:14Z With more flexibility, you will have more complexity. But also more flexibility :) http://stackoverflow.com/questions/1010930/css-framework-off-the-shelf-or-homegrown/1010942#1010942 Comment by Jrgns on CSS Framework - off the shelf or homegrown? Jrgns 2009-06-18T05:52:51Z 2009-06-18T05:52:51Z Awesome framework. Can definitely recommend it! http://stackoverflow.com/questions/974300/http-post-headers-received-differently-from-whats-being-sent Comment by Jrgns on HTTP Post headers, received differently from what's being sent Jrgns 2009-06-10T10:06:36Z 2009-06-10T10:06:36Z How are you acutally sending the headers? With the header() command? At the moment you are just adding headers to an array, nothing else. Show us that code, and we can help :) http://stackoverflow.com/questions/933711/bazaar-plugin-list-of-modified-files-on-pre-commit-hook/933986#933986 Comment by Jrgns on Bazaar plugin: List of modified files on pre-commit hook Jrgns 2009-06-01T08:41:47Z 2009-06-01T08:41:47Z Awesomeness, thanx! http://stackoverflow.com/questions/871858/php-pass-variable-to-next-page/872522#872522 Comment by Jrgns on PHP Pass variable to next page Jrgns 2009-05-20T02:36:57Z 2009-05-20T02:36:57Z Schweet :) Glad I could help. http://stackoverflow.com/questions/880664/problems-formating-a-date/880685#880685 Comment by Jrgns on Problems formating a date Jrgns 2009-05-19T02:34:42Z 2009-05-19T02:34:42Z Um, how? Please share!