User Jonny Barnes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T11:23:38Zhttp://stackoverflow.com/feeds/user/12854http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1418780/removing-new-lines-except-in-pre0removing new lines except in <pre>Jonny Barnes2009-09-13T20:34:10Z2009-09-14T00:02:54Z
<p>I want to remove new lines from some html (with php) except in <pre> tags where whitespace is obviously important.</p>
http://stackoverflow.com/questions/1417689/head-profilehttp-gmpg-org-xfn-11-what-is-this/1417703#14177033Answer by Jonny Barnes for <head profile="http://gmpg.org/xfn/11"> what is this ?Jonny Barnes2009-09-13T13:03:16Z2009-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-jquery0Changing a form input to the current time [jquery]Jonny Barnes2009-08-28T19:25:27Z2009-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><form>
...
<p>Time: <input name="time" id="time" type="text" size="30" value="<?php echo $date; ?>"><a href="" name="time-update">Update to now</a></p>
...
</form>
</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-increments0auto_increment no longer incrementsJonny Barnes2009-07-12T23:35:29Z2009-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-php50How to create a DOM from a User's input in PHP5?Jonny Barnes2008-09-16T23:51:30Z2008-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#7396769Answer by Jonny Barnes for What should a developer know before building a public web site?Jonny Barnes2008-09-16T16:03:12Z2008-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#1417703Comment by Jonny Barnes on <head profile="http://gmpg.org/xfn/11"> what is this ?Jonny Barnes2009-09-13T20:24:51Z2009-09-13T20:24:51ZYou can link to someones website/blog and markup the relation using the X/HTML rel attribute; e.g. <a href="<a href="http://dave-blog.example.org/"" rel="nofollow">dave-blog.example.org/"</a>; rel="friend met">Dave</a>
Essential XFN is a list of terms that can be put in the rel attributehttp://stackoverflow.com/questions/1117208/autoincrement-no-longer-increments/1117213#1117213Comment by Jonny Barnes on auto_increment no longer incrementsJonny Barnes2009-07-12T23:45:06Z2009-07-12T23:45:06Zindeed it is a tinyint column, didn't know that'd be a problem