User Jonny Barnes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:23:38Z http://stackoverflow.com/feeds/user/12854 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1418780/removing-new-lines-except-in-pre 0 removing new lines except in <pre> Jonny Barnes 2009-09-13T20:34:10Z 2009-09-14T00:02:54Z <p>I want to remove new lines from some html (with php) except in &lt;pre&gt; tags where whitespace is obviously important.</p> http://stackoverflow.com/questions/1417689/head-profilehttp-gmpg-org-xfn-11-what-is-this/1417703#1417703 3 Answer by Jonny Barnes for <head profile="http://gmpg.org/xfn/11"> what is this ? Jonny Barnes 2009-09-13T13:03:16Z 2009-09-13T13:03:16Z <p>Its like a meta link for the XHTML Friends Network. XFN is a way of describing, in a machine-readbale way, relationships between you and other people.</p> http://stackoverflow.com/questions/1348874/changing-a-form-input-to-the-current-time-jquery 0 Changing a form input to the current time [jquery] Jonny Barnes 2009-08-28T19:25:27Z 2009-08-28T23:26:02Z <p>I have a form with an input that contains the date in the form: 12:00:59 am, 25 December 2010</p> <p>The most likely time I'd want to change this to is the current time.</p> <p>Is it possible to have a button or link next to the input field that when clicked jquery would update the time to the current time.</p> <p>(I'm already using jquery for something else so thought it'd be easier to append a bit more code to my js file than code from scratch)</p> <p>I can't do this. Here's the html:</p> <pre><code>&lt;form&gt; ... &lt;p&gt;Time: &lt;input name="time" id="time" type="text" size="30" value="&lt;?php echo $date; ?&gt;"&gt;&lt;a href="" name="time-update"&gt;Update to now&lt;/a&gt;&lt;/p&gt; ... &lt;/form&gt; </code></pre> <p>And heres the JS:</p> <pre><code>$("a[time-update]").click(function(event) { var time = Date(); $("#time").value = time; event.preventDefault(); } ); </code></pre> <p>It just reloads the page.</p> http://stackoverflow.com/questions/1117208/autoincrement-no-longer-increments 0 auto_increment no longer increments Jonny Barnes 2009-07-12T23:35:29Z 2009-07-13T00:21:47Z <p>In a MySQL table the id column is set to auto_increment and the next auto_increment is set to 128 in phpmyadmin, but any new rows added have 127 as the value in the id row. I have no idea why.</p> <p>Changed the column from tiny-int to int and everything working now, cheers.</p> http://stackoverflow.com/questions/78447/how-to-create-a-dom-from-a-users-input-in-php5 0 How to create a DOM from a User's input in PHP5? Jonny Barnes 2008-09-16T23:51:30Z 2008-09-18T21:56:47Z <p>I can't seem to find any decent info about this on the web. Any advice?</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73967#73967 69 Answer by Jonny Barnes for What should a developer know before building a public web site? Jonny Barnes 2008-09-16T16:03:12Z 2008-09-16T16:03:12Z <p>Rule number one of security:</p> <p><strong>Never</strong> trust user input.</p> http://stackoverflow.com/questions/1417689/head-profilehttp-gmpg-org-xfn-11-what-is-this/1417703#1417703 Comment by Jonny Barnes on <head profile="http://gmpg.org/xfn/11"> what is this ? Jonny Barnes 2009-09-13T20:24:51Z 2009-09-13T20:24:51Z You can link to someones website/blog and markup the relation using the X/HTML rel attribute; e.g. &lt;a href=&quot;<a href="http://dave-blog.example.org/&quot" rel="nofollow">dave-blog.example.org/&quot</a>; rel=&quot;friend met&quot;&gt;Dave&lt;/a&gt; Essential XFN is a list of terms that can be put in the rel attribute http://stackoverflow.com/questions/1117208/autoincrement-no-longer-increments/1117213#1117213 Comment by Jonny Barnes on auto_increment no longer increments Jonny Barnes 2009-07-12T23:45:06Z 2009-07-12T23:45:06Z indeed it is a tinyint column, didn't know that'd be a problem