User jelmer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:22:09Zhttp://stackoverflow.com/feeds/user/16499http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/102534/sending-values-through-links-html/102660#1026600Answer by jelmer for Sending values through links (html)jelmer2008-09-19T15:12:40Z2008-09-19T15:12:40Z<p>Well this is pretty basic with javascript, but if you want more of this and more advanced stuff you should really look into php for instance. Using php it's easy to get variables from one page to another, here's an example: </p>
<p>the url: </p>
<pre><code>localhost/index.php?myvar=Hello World
</code></pre>
<p>You can then access myvar in index.php using this bit of code:</p>
<pre><code>$myvar =$_GET['myvar'];
</code></pre>
http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/85817#858174Answer by jelmer for What is the easiest or fastest way to make CSS render the same in all browsersjelmer2008-09-17T17:51:08Z2008-09-17T17:51:08Z<p>First of all you could try a reset, like some other people mentioned here, you can do a quick margin and padding reset with this piece of css: </p>
<pre><code>*{margin: 0; padding: 0}
</code></pre>
<p>When you design your css make sure you're using a modern, standars compliant browser (personally I would recommend firefox 3 which has an excellent <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">web developer toolbar</a>, with which you can edit css from within your browser). Doing this will certainly make your site look ok in all the new browsers. </p>
<p>Most of the layout problems you'll have will probably be caused by Internet Explorer's <a href="http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug" rel="nofollow">wrong interpretation</a> of the box model, you can avoid this by never setting a width and margin or padding at the same time. This might seem annoying but it's not, just apply the padding or margin to the content which is inside your element which has a width set. </p>
<p>Of course more problems exist but this is probably the most common and annoying one, for more specific issues you can always try google. Also, lately I'm considering to ignore IE6 and older browsers if my site's audience allows it, on a web design site you'll never find anyone using IE6, right? Of course this is not possible often since many (crazy ;)) people are still using IE6. </p>
<p>Also, if you need to test your site <a href="http://browsershots.org/" rel="nofollow">browsershots</a> is a free way to do it quickly. </p>