User Paul Dixon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T09:50:48Zhttp://stackoverflow.com/feeds/user/6521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/164831/how-to-rank-a-million-images-with-a-crowdsourced-sort13How to rank a million images with a crowdsourced sortPaul Dixon2008-10-02T22:09:06Z2009-12-16T18:06:44Z
<p>I'd like to rank a collection of landscape images by making a game whereby site visitors can rate them, in order to find out which images people find the most appealing.</p>
<p>What would be a good method of doing that?</p>
<ul>
<li><strong>Hot-or-Not style</strong>? I.e. show a single image, ask the user to rank it from 1-10. As I see it, this allows me to average the scores, and I would just need to ensure that I get an even distribution of votes across all the images. Fairly simple to implement.</li>
<li><strong>Pick A-or-B</strong>? I.e. show two images, ask user to pick the better one. This is appealing as there is no numerical ranking, it's just a comparison. But how would I implement it? My first thought was to do it as a quicksort, with the comparison operations being provided by humans, and once completed, simply repeat the sort ad-infinitum.</li>
</ul>
<p>How would <em>you</em> do it?</p>
<p><em>If you need numbers, I'm talking about one million images, on a site with 20,000 daily visits. I'd imagine a small proportion might play the game, for the sake of argument, lets say I can generate 2,000 human sort operations a day! It's a non-profit website, and the terminally curious will find it through my profile :)</em></p>
http://stackoverflow.com/questions/1864291/subtracting-a-percentage-from-a-value-in-php/1864339#18643391Answer by Paul Dixon for subtracting a percentage from a value in phpPaul Dixon2009-12-08T03:15:54Z2009-12-08T03:15:54Z<p>In addition to the basic mathematics, I would also suggest you consider using <a href="http://php.net/round" rel="nofollow">round()</a> to force the result to have 2 decimal places. </p>
<pre><code>$newprice = round($price * ((100-$amount) / 100), 2);
</code></pre>
<p>In this way, a $price of 24.99 discounted by 25% will produce 18.7425, which is then rounded to 18.74</p>
http://stackoverflow.com/questions/1818793/when-are-javascripts-executed/1818803#18188034Answer by Paul Dixon for When are JavaScripts executed?Paul Dixon2009-11-30T09:44:08Z2009-11-30T09:44:08Z<p>Why not just put the "you must have javascript" warning inside a <a href="http://www.w3schools.com/TAGS/tag%5Fnoscript.asp" rel="nofollow"><code><noscript></code></a> tag?</p>
http://stackoverflow.com/questions/1808294/what-is-tpl-files-web-design/1808311#18083110Answer by Paul Dixon for What is .tpl files? web designPaul Dixon2009-11-27T11:52:36Z2009-11-27T11:52:36Z<p>Those look like <a href="http://smarty.net" rel="nofollow">Smarty</a> templates. There should be some additional PHP scripts which actually instantiate the Smarty engine and give it the data it can use for the replaceable elements.</p>
http://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807854#18078547Answer by Paul Dixon for Using post array from paypalPaul Dixon2009-11-27T10:11:37Z2009-11-27T11:47:50Z<p>I'd change your revised code to use $_POST directly, e.g.</p>
<pre><code>for($i = 1;$i <= $_POST['num_cart_items'] ;$i++){
$item_number= intval($_POST['item_number' . $i]);
$item_quantity= intval($_POST['quantity' . $i]);
printf("DEBUG: item %d item:%d quantity:%d<br>", $i, $item_number, $item_quantity);
$new_amount = $row['stock_quantity'] - $item_quantity;
$db->update1_by_match('cart_products','stock_quantity',$new_amount,'id', $item_number);
}
</code></pre>
<p>The diagnostic output should help you refine where things are going for you.</p>
<p><strong>EARLIER QUESTION</strong> - notes below refer to the question before a complete revision of it was it made.</p>
<p>What you really need is an array, rather than attempting to use variable variables</p>
<pre><code>$item_numbers=array(24, 16);
foreach ($item_numbers as $item_number) {
$result = $db->get_cols_by_match('cart_products','stock_quantity','id', $item_number);
}
</code></pre>
<p>To do it the way you were doing it, something like this might clarify it</p>
<pre><code>$item_number1='24';
$item_number2='16';
$num_cart_items = 2
for($i = 1;$i <= $num_cart_items ;$i++){
$varname='item_number' . $i;
printf("DEBUG: %s = %s<br>", $varname, $$varname);
$result = $db->get_cols_by_match('cart_products','stock_quantity','id', $$varname);
}
</code></pre>
<p>The $$varname is an example of a <a href="http://php.net/manual/en/language.variables.variable.php" rel="nofollow">variable variable</a>, but in your case an array declares your intent in a much clearer way.</p>
http://stackoverflow.com/questions/1807906/how-was-a-url-like-http-stackoverflow-com-posts-1807421-edit-created-in-php/1807935#18079356Answer by Paul Dixon for How was a URL like http://stackoverflow.com/posts/1807421/edit created in PHP?Paul Dixon2009-11-27T10:25:34Z2009-11-27T10:32:20Z<p>With apache and PHP, you might perform one of your examples using a <a href="http://httpd.apache.org/docs/2.0/mod/mod%5Frewrite.html" rel="nofollow">mod_rewrite</a> rule in your apache config as follows:</p>
<pre><code>RewriteEngine On
RewriteRule ^/posts/(\d+)/edit /posts/edit.php?id=$1
</code></pre>
<p>This looks for URLs of the "clean" form, and then rewrites them so that they are internally redirected to a particular PHP script.</p>
<p>Quite often rules like this are used to route all requests into a common controller script, which might do something like instantiate a "PostsController" class and ask it to handle an edit request. This is a common feature of most PHP application frameworks.</p>
http://stackoverflow.com/questions/1804739/how-to-trigger-a-url-using-php/1804766#18047662Answer by Paul Dixon for How to trigger a URL using php?Paul Dixon2009-11-26T16:56:01Z2009-11-26T16:56:01Z<p>You could try some lower level socket calls to make a simple HTTP request with <a href="http://php.net/fsockopen" rel="nofollow">fsockopen</a> and related functions. Here's a sample from the manual</p>
<pre><code>$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
</code></pre>
http://stackoverflow.com/questions/1795425/how-to-get-opcodes-of-php/1795447#17954472Answer by Paul Dixon for How to get opcodes of PHP?Paul Dixon2009-11-25T08:28:15Z2009-11-25T08:33:43Z<p>Check out the <a href="http://pecl.php.net/package/vld" rel="nofollow">Vulcan Logic Disassembler</a> PECL extension - see <a href="http://derickrethans.nl/vld.php" rel="nofollow">author's home page</a> for more info.</p>
<blockquote>
<p>The Vulcan Logic Disassembler hooks
into the Zend Engine and dumps all the
opcodes (execution units) of a script.
It was written as as a beginning of an
encoder, but I never got the time for
that. It can be used to see what is
going on in the Zend Engine.</p>
</blockquote>
<p>Once installed, you can use it like this:</p>
<pre><code>php -d vld.active=1 -d vld.execute=0 -f yourscript.php
</code></pre>
<p>See also this <a href="http://blog.libssh2.org/index.php?/archives/92-Understanding-Opcodes.html" rel="nofollow">interesting blog post on opcode extraction</a>, and a <a href="http://zapt.info/opcodes.html" rel="nofollow">list of opcodes with many demonstrative samples</a>.</p>
http://stackoverflow.com/questions/1795362/close-browser-totally/1795377#17953774Answer by Paul Dixon for close browser totallyPaul Dixon2009-11-25T08:07:20Z2009-11-25T08:12:40Z<p>You can't close the users browser, but if you can identify the cookie which contains the session, you may be able to clear it. How you would do this depends on the language you are using.</p>
<p>In Javascript, you would have be operating on the same domain as the cookie you want to clear</p>
<pre><code>var expired = new Date();
expired.setTime(mydate.getTime() - 86400);
document.cookie = "my_session_cookie_name=; expires=" + expired.toGMTString();
</code></pre>
<p>On the server-side, you can output headers to set or clear cookies. Depending on the users browser settings, you may be able to set cookies on 3rd party domains. Here's an example in PHP</p>
<pre><code>setcookie ('my_session_cookie_name', '', time() - 86400);
//clear cookie for example.com
setcookie('my_session_cookie_name', '', time()-86400, '/', '.example.com');
</code></pre>
http://stackoverflow.com/questions/1793826/how-can-i-convert-mp3-to-pcm-with-c/1793844#17938441Answer by Paul Dixon for How can I convert MP3 to PCM with C++?Paul Dixon2009-11-25T00:04:56Z2009-11-25T00:04:56Z<p>Take a look at the answers to <strong><a href="http://stackoverflow.com/questions/1712494/c-c-open-source-mp3-to-pcm-convertor">C\C++ open source Mp3 to PCM convertor</a></strong> which give you a starting point.</p>
http://stackoverflow.com/questions/1788683/is-actionscript-3-0-strong-enough-to-finally-be-my-sole-server-side-language/1788708#17887080Answer by Paul Dixon for Is actionscript 3.0 strong enough to finally be my sole server-side language?Paul Dixon2009-11-24T08:39:09Z2009-11-24T10:50:57Z<p>How strong it is largely depends on your own requirements, and the job at hand.</p>
<p>What you could do is list the requirements that matter to you, for example, documentation, ease of debugging, community support, vendor support, ease of deployment etc. For each language you want to compare, score how each one does on these requirements.</p>
<p>If you score Actionscript 3 the highest, you'll have answered your own question :)</p>
<p>However, one of your requirements is "can develop server-side code for HTML generation like PHP", and you'll find Actionscript scoring rather low there. While a limited server-side actionscript is available in Flash Media Server, it is more for providing services to client-side Flash applications than delivering HTML.</p>
http://stackoverflow.com/questions/108066/whats-the-best-way-to-track-and-submit-a-timesheet13What's the best way to track and submit a timesheet?Paul Dixon2008-09-20T12:55:47Z2009-11-23T15:39:27Z
<p>I work for a small-ish company, 70 people or so, 10 of us are developers. Every month we submit a timesheet tracking the hours spent on the projects we're involved in. Because we leave this until the last minute, we spent up to an hour going through our daily svn commits to reconstruct the hours spent.</p>
<p>This is clearly a waste of time, I'd be interested to hear of a "system" that works in other organizations. Maybe it's just a case of being disciplined to complete a paper timesheet every day, but I'd prefer something electronic and unobtrusive.</p>
http://stackoverflow.com/questions/1771584/what-characters-are-allowed-when-querying-a-mysql-database/1771617#17716174Answer by Paul Dixon for What characters ARE allowed when querying a mysql database?Paul Dixon2009-11-20T16:24:05Z2009-11-20T16:37:29Z<p>A database column can technically hold any of those characters. The problem is that you are not escaping them properly in your query.</p>
<p>One way way to do this using <a href="http://php.net/mysql%5Freal%5Fescape%5Fstring" rel="nofollow">mysql_real_escape_string</a> is as follows:</p>
<pre><code>$sql=sprintf("insert into cars_db (description) values ('%s')",
mysql_real_escape_string($_POST['description']) );
//execute query and show errors that result...
$result = mysql_query($sql);
if (!$result) {
die("Oops:<br>$sql<br>".mysql_error());
}
</code></pre>
<p>Another way is to use a library like PDO or ADODb which makes it easier to use prepared statements with placeholders. Such libraries ensure that data injected into queries is properly escaped.</p>
<p>This is good practice not only because it solves your problem, but it also improves the security of your code, since it becomes harder to perform SQL injection attacks.</p>
http://stackoverflow.com/questions/1771562/wille-php-copy-work-for-a-person-viewing-the-site-who-has-the-site-which-im-co/1771595#17715954Answer by Paul Dixon for Wille php copy() work for a person viewing the site who has the site which i'm copying from blocked?Paul Dixon2009-11-20T16:21:10Z2009-11-20T16:21:10Z<p>PHP runs on the server, so it is the webserver, not the user, which requests that remote file.</p>
<p>So yes, you can copy a file from a server which a user themselves might not be able to reach directly.</p>
http://stackoverflow.com/questions/1765697/how-can-i-obtain-unmodified-command-line-arguments-to-wrap-another-command-line3How can I obtain unmodified command line arguments to "wrap" another command line tool?Paul Dixon2009-11-19T18:56:04Z2009-11-19T22:44:08Z
<p>I want to write a script <code>foo</code> which simply calls <code>bar</code> with the exact same arguments it was called with, using Bash or Perl.</p>
<p>Now, a simply way to do this in perl would be</p>
<pre><code>#!/bin/perl
my $args=join(' ', @ARGV);
`bar $args`;
</code></pre>
<p>However, the values in ARGV have already been processed by the shell, thus if I call </p>
<pre><code> foo "I wonder, \"does this work\""
</code></pre>
<p>bar would get called like this</p>
<pre><code> bar I wonder "does this work"
</code></pre>
<p>How can I obtain the original command line so that I can simply pass it on verbatim?</p>
http://stackoverflow.com/questions/1086539/assigning-the-return-value-of-new-by-reference-is-deprecated/1086559#10865591Answer by Paul Dixon for Assigning the return value of new by reference is deprecatedPaul Dixon2009-07-06T11:42:46Z2009-11-19T17:06:03Z<p>In PHP5 this idiom is deprecated</p>
<pre><code>$obj_md =& new MDB2();
</code></pre>
<p>You sure you've not missed an ampersand in your sample code? That would generate the warning you state, but it is not required and can be removed.</p>
<p>To see why this idiom was used in PHP4, see <a href="http://www.php.net/manual/en/oop4.newref.php" rel="nofollow">this manual page</a>.</p>
http://stackoverflow.com/questions/1749931/optimize-php-mysql-community-website-performance/1750021#17500211Answer by Paul Dixon for Optimize PHP, MYSQL community website performancePaul Dixon2009-11-17T16:21:48Z2009-11-17T16:26:59Z<p>You mention you used <a href="http://xdebug.org/" rel="nofollow">XDebug</a> - what weren't you able to do? Typically, to start tracking down a bottleneck you enable profiling of a request and then view the resulting "cachegrind" file in <a href="http://kcachegrind.sourceforge.net/html/Home.html" rel="nofollow">KCacheGrind</a> or <a href="http://sourceforge.net/projects/wincachegrind/" rel="nofollow">WinCacheGrind</a>.</p>
<p>As for using a cache system, a dynamic script such as yours will generally do something like this</p>
<ul>
<li>construct a cache "key" from the unique inputs to the script</li>
<li>ask the caching system if it has data for that key. If has, you're good to go!</li>
<li>otherwise, do all the hard work to generate the data, and ask the caching system to store it under the desired key for next time.</li>
</ul>
<p><a href="http://php.net/manual/en/book.apc.php" rel="nofollow">APC Cache</a> can help to speed things up further by caching the parsed version of the PHP code.</p>
http://stackoverflow.com/questions/1743443/is-the-code-generated-by-a-gnu-program-is-under-gnu-gpl-too/1743484#17434845Answer by Paul Dixon for Is the code generated by a gnu program is under gnu gpl too?Paul Dixon2009-11-16T17:06:10Z2009-11-16T17:06:10Z<p>From the GPL FAQ (which is an excellent resource for understanding the licenced):</p>
<blockquote>
<p>Q. <a href="http://www.gnu.org/licenses/gpl-faq.html#WhatCaseIsOutputGPL" rel="nofollow">In what cases is the output of a
GPL program covered by the GPL
too?</a></p>
<p>A. Only when the program copies part
of itself into the output.</p>
</blockquote>
http://stackoverflow.com/questions/1735326/running-a-fastest-algorithm-competition/1735353#17353531Answer by Paul Dixon for Running a fastest-algorithm competitionPaul Dixon2009-11-14T19:36:57Z2009-11-14T19:36:57Z<p>For (1) why not just time the execution of the process? Engineer the puzzle so that the actual processing is by far the most dominant aspect of the timing rather than process startup, and time it over several iterations to obtain an average.</p>
<p>For (2) provide sample input, but use alternative input for the live contest. </p>
http://stackoverflow.com/questions/1734713/save-variable-as-txt-but-not-in-the-server/1734739#17347394Answer by Paul Dixon for save variable as txt but not in the serverPaul Dixon2009-11-14T16:31:50Z2009-11-14T17:27:17Z<p>You can hint to the browser that your response is a file which should be saved by using a <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1" rel="nofollow">Content-Disposition</a> header:</p>
<pre><code>header('Content-Disposition: attachment; filename="filename.txt"');
header('Content-Type: text/plain');
echo "Desired file contents";
</code></pre>
<p>Note that this does imply you are generating the file on the server, which your question suggests isn't what you want. You could build up the file contents in Javascript on the client side, then create a link using the <a href="http://en.wikipedia.org/wiki/Data%5FURI%5Fscheme" rel="nofollow">data uri scheme</a> to allow download. However, it's not support by all browsers, you can't force a "save as", and there are some size limits on what you can generate.</p>
http://stackoverflow.com/questions/1734072/official-end-of-support-for-php4/1734089#17340895Answer by Paul Dixon for Official end of support for PHP4?Paul Dixon2009-11-14T12:15:18Z2009-11-14T12:15:18Z<p><a href="http://www.php.net/releases/#v4" rel="nofollow">Support was officially discontinued on 2007-12-31!</a></p>
http://stackoverflow.com/questions/1727919/how-to-prevent-multiple-login-in-php-website/1727987#17279871Answer by Paul Dixon for How to prevent multiple login in PHP websitePaul Dixon2009-11-13T08:52:04Z2009-11-13T08:52:04Z<p>You could change your model so that only the most recent user can be logged in. </p>
<p>If you record the most recent session id seen for each user, when they log in a second time you can trash any currently existing session, effectively logging them out.</p>
<p>For a normal user, things appear to "just work". If you're wanting to prevent "abnormal" users from distributing their login credentials, this should serve as a disincentive.</p>
http://stackoverflow.com/questions/1723227/how-to-avoid-mysql-caching/1723265#17232653Answer by Paul Dixon for how to avoid mysql cachingPaul Dixon2009-11-12T15:56:30Z2009-11-12T16:51:41Z<p>You can tell the server not to place the result in the query cache by including <a href="http://dev.mysql.com/doc/refman/5.1/en/query-cache-in-select.html" rel="nofollow">SQL_NO_CACHE</a> in the query:</p>
<pre><code>SELECT SQL_NO_CACHE id, name FROM customer;
</code></pre>
<p>Aside from the query cache though, there's a lot more going on inside MySQL to speed things up, it caches other information about tables and indexes to speed up future queries. The first execution of the query will also warm up operating system file caches too.</p>
<p>What you really need to do is <a href="http://dev.mysql.com/doc/refman/5.1/en/explain.html" rel="nofollow">EXPLAIN</a> the query, and look at the number of rows the database engine needs to analyse. By exploring how it uses your table indexes (or not) you will be better informed as to what indexes might be missing, or alternative ways of structuring the query.</p>
http://stackoverflow.com/questions/1716039/session-expiration/1716084#17160840Answer by Paul Dixon for session expirationPaul Dixon2009-11-11T15:50:40Z2009-11-11T15:50:40Z<p>Unless you have the user explicity log out, your server cannot know the user has closed their browser.</p>
<p>You can simply let sessions timeout naturally, for example, after ten minutes of inactivity.</p>
<p>Alternatively, you can add some js to the page to make regular pings back to the server to keep a session alive while the browser window is open.</p>
http://stackoverflow.com/questions/1703825/follow-up-of-technologies/1703846#17038461Answer by Paul Dixon for Follow up of TechnologiesPaul Dixon2009-11-09T21:13:22Z2009-11-09T21:13:22Z<p>See <strong><a href="http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there">What good technology podcasts are out there?</a></strong> for a great list of podcast resources - most will be accompanied by a blog too if you prefer.</p>
<p>See also <strong><a href="http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs">What are the best programming and development related Blogs?</a></strong></p>
http://stackoverflow.com/questions/1700716/what-about-calling-aspx-in-php/1700744#17007444Answer by Paul Dixon for what about calling aspx in php?Paul Dixon2009-11-09T12:36:36Z2009-11-09T16:31:24Z<p>If you want the output of the aspx file, you will need to request it via a web server which can understand aspx files rather than the file system, e.g.</p>
<pre><code>include("http://example.com/Default.aspx");
</code></pre>
<p>Your PHP installation must have <a href="http://uk3.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen" rel="nofollow">URL fopen wrappers</a> enabled for this to work.</p>
<p>As Magnus Nordlander notes in another answer, you should only use <a href="http://php.net/include" rel="nofollow">include</a> if you expect to find php code in the file. If you don't, you could simply use <a href="http://php.net/readfile" rel="nofollow">readfile</a> to output the data verbatim:</p>
<pre><code>readfile("http://example.com/Default.aspx");
</code></pre>
http://stackoverflow.com/questions/1688532/how-to-reverse-bits-of-a-byte/1688634#16886349Answer by Paul Dixon for How to reverse bits of a byte ?Paul Dixon2009-11-06T16:19:02Z2009-11-06T16:19:02Z<p>Check the section on reversing bit sequences in <a href="http://graphics.stanford.edu/~seander/bithacks.html#BitReverseObvious" rel="nofollow">Bit Twiddling Hacks</a>. Should be easy to adapt one of the techniques into PHP. </p>
<p>While probably not practical for PHP, there's a particularly fascinating one using 3 64bit operations:</p>
<pre><code>unsigned char b; // reverse this (8-bit) byte
b = (b * 0x0202020202ULL & 0x010884422010ULL) % 1023;
</code></pre>
http://stackoverflow.com/questions/1683843/is-sql-injection-a-risk-today/1683884#16838846Answer by Paul Dixon for Is SQL injection a risk today?Paul Dixon2009-11-05T21:46:22Z2009-11-05T21:46:22Z<p>That particular attack doesn't work, as mysql_query will only execute a single statement.</p>
<p>I can still abuse your code though, e.g. if I arranged for id to be <code>SELECT password FROM Users WHERE Username='admin'</code> I might have a fighting chance of being able to get your system to expose some internal information.</p>
<p>Basically, if you allow unfiltered input into your SQL, there will be some very creative ways of both creating data you didn't expect, and exposing data you didn't intend!</p>
http://stackoverflow.com/questions/1660405/ruby-password-sha512-hash-replication-using-php/1660442#16604421Answer by Paul Dixon for Ruby password SHA512 hash replication using PHPPaul Dixon2009-11-02T10:19:52Z2009-11-02T10:19:52Z<p>Something like this should do it, using the php <a href="http://php.net/hash" rel="nofollow">hash()</a> function</p>
<pre><code>function passwordhash($password, $salt)
{
return hash('sha512', "{$password}:{$salt}");
}
</code></pre>
http://stackoverflow.com/questions/1640335/where-can-i-download-the-source-code-for-prior-releases-of-chromium/1640348#16403480Answer by Paul Dixon for Where Can I Download the Source Code for Prior Releases of Chromium?Paul Dixon2009-10-28T21:49:29Z2009-10-28T22:52:00Z<p>You can browse the release snapshots here <a href="http://src.chromium.org/viewvc/chrome/releases/" rel="nofollow">http://src.chromium.org/viewvc/chrome/releases/</a></p>
<p>To download a given branch just use a subversion URL, e.g.</p>
<pre><code>svn checkout http://src.chromium.org/svn/releases/1.0.154.53/
</code></pre>
http://stackoverflow.com/questions/1807827/using-post-array-from-paypalComment by Paul Dixon on Using post array from paypalPaul Dixon2009-11-27T11:42:28Z2009-11-27T11:42:28ZAre the post variables global? Why not simply reference them directly from $_POST?http://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807854#1807854Comment by Paul Dixon on Using post array from paypalPaul Dixon2009-11-27T11:37:48Z2009-11-27T11:37:48ZThen the problem probably lies deeper, inside get_cols_by_match
I will amend the code with a diagnostic output to "prove" the approach is at least getting the values out of those variables.http://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807845#1807845Comment by Paul Dixon on Using post array from paypalPaul Dixon2009-11-27T10:31:02Z2009-11-27T10:31:02ZI didn't say it didn't work, only that it was an inappropriate solution in this context.http://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807854#1807854Comment by Paul Dixon on Using post array from paypalPaul Dixon2009-11-27T10:17:35Z2009-11-27T10:17:35ZYes, just spotted that - correctedhttp://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807845#1807845Comment by Paul Dixon on Using post array from paypalPaul Dixon2009-11-27T10:16:16Z2009-11-27T10:16:16ZIt is using a sledgeahmmer to crack a nut though, and as the OP is clearly new to PHP, using eval in this case should not be encouraged.http://stackoverflow.com/questions/1804739/how-to-trigger-a-url-using-php/1804766#1804766Comment by Paul Dixon on How to trigger a URL using php?Paul Dixon2009-11-26T17:12:35Z2009-11-26T17:12:35ZWell, I would take that as a sign that maybe your host just doesn't want you do this. Find another host!http://stackoverflow.com/questions/1802398/function-only-works-on-one-divComment by Paul Dixon on Function only works on one div?Paul Dixon2009-11-26T09:10:05Z2009-11-26T09:10:05ZMoses supposes we can diagnosis without the codeses.... :)http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-userComment by Paul Dixon on How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?Paul Dixon2009-11-25T16:32:44Z2009-11-25T16:32:44Zpaste your code, that will make it clearer where you went wrong...http://stackoverflow.com/questions/1795362/close-browser-totally/1795377#1795377Comment by Paul Dixon on close browser totallyPaul Dixon2009-11-25T09:58:52Z2009-11-25T09:58:52ZYou can set them across domains, but depending on the security settings in the browser, they may be blocked, the user may be prompted to confirm, or they may be silently accepted. Here's how you would configure Firefox to block 3rd party cookies: <a href="http://support.mozilla.com/en-US/kb/Disabling+third+party+cookies" rel="nofollow">support.mozilla.com/en-US/kb/…</a>http://stackoverflow.com/questions/1794134/what-video-formats-can-be-played-from-a-flex-app/1794852#1794852Comment by Paul Dixon on What video formats can be played from a Flex app?Paul Dixon2009-11-25T09:19:33Z2009-11-25T09:19:33ZFlash 9 update 3 and onwards can play H.264 videohttp://stackoverflow.com/questions/1795362/close-browser-totally/1795377#1795377Comment by Paul Dixon on close browser totallyPaul Dixon2009-11-25T08:37:44Z2009-11-25T08:37:44ZIf you can set them, you can clear them, there's no difference. It really depends on whether the browser is configured to accept them. http://stackoverflow.com/questions/1795425/how-to-get-opcodes-of-phpComment by Paul Dixon on How to get opcodes of PHP?Paul Dixon2009-11-25T08:26:34Z2009-11-25T08:26:34Zwho voted "not a real question"? It's an excellent question!http://stackoverflow.com/questions/1793257/how-can-i-solve-this-median-programming-problem-in-cComment by Paul Dixon on How can I solve this median programming problem in C++Paul Dixon2009-11-24T22:11:29Z2009-11-24T22:11:29ZWhat you need to do is post how far you've got - why not start with step 1, and consider how you'd explain to someone how a median is calculated...http://stackoverflow.com/questions/833887/pastebin-apiComment by Paul Dixon on pastebin APIPaul Dixon2009-11-24T15:26:37Z2009-11-24T15:26:37ZFWIW, I run pastebin.com and don't block automated upload, there are many 3rd party scripts and tools for doing it. What does get blocked is rapid repetition of automated submissions.http://stackoverflow.com/questions/1788683/is-actionscript-3-0-strong-enough-to-finally-be-my-sole-server-side-language/1788727#1788727Comment by Paul Dixon on Is actionscript 3.0 strong enough to finally be my sole server-side language?Paul Dixon2009-11-24T10:47:05Z2009-11-24T10:47:05Z@Amarghosh - there are many examples of server-side javascript - <a href="http://en.wikipedia.org/wiki/Server-side_JavaScript" rel="nofollow">en.wikipedia.org/wiki/Server-side_JavaScript/…</a>