User Sam152 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T21:55:57Zhttp://stackoverflow.com/feeds/user/59730http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1855025/let-jquery-know-which-was-the-last-visited-php-page/1857256#18572560Answer by Sam152 for let jquery know which was the last visited php page?Sam1522009-12-07T01:14:59Z2009-12-07T01:14:59Z<p>I did a similar thing not two weeks ago, correct me if I'm wrong, but if you want the registration to direct to the page the user was on, after the user has been registered in the ajax just add:</p>
<pre><code>window.location.href=window.location.href;
</code></pre>
<p>That way the after the registration is done, it just reloads where the member was with the environment of a logged in user. This method worked great for me.</p>
http://stackoverflow.com/questions/1830568/css-trick-to-conjoin-divs/1830577#18305770Answer by Sam152 for Css trick to conjoin divs.Sam1522009-12-02T04:02:12Z2009-12-02T05:57:17Z<p>You could float all the child divs of "mainContainer" left like below, then you can set height and width requirements as you please. </p>
<pre><code>#mainContainer > div
{
float:left;
}
#LeftDiv
{
height:100px;
width:100px;
background-color:red;
}
#RightDiv
{
height:100px;
width:100px;
background-color:green;
}
</code></pre>
<p>Hmm, and if your left and right containers are only meant for a background image, you might consider just making it one image and applying it to mainContainer, </p>
<pre><code>#mainContainer
{
background-image:url(theimage.jpg);
padding-left:100px; /*The amount of the image to the left */
padding-right:100px; /* the amount of the image to the right. */
}
</code></pre>
http://stackoverflow.com/questions/1812056/how-to-design-small-web-forms-in-html-page/1812065#18120651Answer by Sam152 for How to design small web forms in html pageSam1522009-11-28T09:14:30Z2009-11-28T09:21:46Z<p>Bam! Chuck the following CSS into your CSS file. You may change the size of the font but generally all your form elements will now be nice and big.</p>
<pre><code>input,button,select
{
font-size:18px;
}
</code></pre>
<p>or, in your HTML</p>
<pre><code><style type="text/css">
input,button,select
{
font-size:18px;
}
</style>
</code></pre>
http://stackoverflow.com/questions/1807217/if-get-variable-is-equal-to-array/1807220#18072202Answer by Sam152 for If [Get Variable] is equal to [Array]Sam1522009-11-27T07:17:06Z2009-11-27T08:33:32Z<p>You can use the <a href="http://au.php.net/in%5Farray" rel="nofollow">in_array()</a> function. I'm pretty sure it's exactly what you are looking for. Here is the function in the code sample you provided.</p>
<pre><code>$someArray = array("a","b","c");
if(in_array($_GET["foobar"],$someArray)) {
return true;
} else {
return false;
}
</code></pre>
http://stackoverflow.com/questions/1806704/3-d-game-programming/1806997#18069970Answer by Sam152 for 3-d game programmingSam1522009-11-27T05:53:11Z2009-11-27T05:53:11Z<p>There are some great C++ game programming frameworks to get you started. <a href="http://gdk.thegamecreators.com/" rel="nofollow">DarkGDK</a> is a great one, I have used it and it takes some of the pain out of making a game in C++.</p>
http://stackoverflow.com/questions/1795800/preloading-images/1795814#17958146Answer by Sam152 for Preloading imagesSam1522009-11-25T09:50:51Z2009-11-25T10:34:21Z<p>I would do some research into CSS sprites, it will negate the need to preload your images and it will make your page load times go much faster. <a href="http://www.alistapart.com/articles/sprites" rel="nofollow">A List Apart</a> has a good article on CSS sprites.</p>
<p>If you really wanted to preload that one image you can create a really tiny pixel with a background of the image you wanted to hover over, it's not a very elegant solution but it would do the job.</p>
<pre><code>#preload
{
background-image:url(../images/today-over.png);
width:1px;
height:1px;
position:absolute;
}
</code></pre>
<p>And then on your page:</p>
<pre><code><div id="preload"></div>
</code></pre>
http://stackoverflow.com/questions/1794991/how-to-show-power-point-presentations-on-web-without-using-inerop-or-powerpoint/1794996#17949960Answer by Sam152 for How to show power point presentations on web, without using Inerop or PowerPoint installation on server?Sam1522009-11-25T06:16:57Z2009-11-25T06:16:57Z<p>Google docs has PowerPoint support. You can create and upload .ppt files and display them in a browser, I'm not sure if all the functionality would be there but it's worth a shot.</p>
http://stackoverflow.com/questions/1781349/how-to-calculate-first-n-prime-numbers/1781361#17813610Answer by Sam152 for How to calculate first n prime numbers?Sam1522009-11-23T06:07:10Z2009-11-23T06:46:05Z<p>Why not just hardcode an answer for i = 0 or 1?</p>
<pre><code>n = abs(n)
i = 2
if(n == 0 || n == 1)
return true //Or whatever you feel 0 or 1 should return.
while i < n:
if n % i == 0:
return False
i += 1
return True
</code></pre>
<p>And you could further improve the speed of your algorithm by omitting some numbers. This script only checks up to the square root of n as <s>no composite number has factors greater than its square root</s> if a number has one or more factors, one will be encountered before the square root of that number. When testing large numbers, this makes a pretty big difference.</p>
<pre><code>n = abs(n)
i = 2
if(n == 0 || n == 1)
return true //Or whatever you feel 0 or 1 should return.
while i <= sqrt(n):
if n % i == 0:
return False
i += 1
return True
</code></pre>
http://stackoverflow.com/questions/1777820/php-variable-in-a-function-name/1777829#17778291Answer by Sam152 for PHP: Variable in a function nameSam1522009-11-22T04:39:43Z2009-11-22T04:39:43Z<p>You should ask yourself why you need to be doing this, perhaps you need to refactor your code to something like the following:</p>
<pre><code>function animal_sound($type){
$animals=array();
$animals['dog'] = "woof";
$animals['cow'] = "moo";
return $animals[$type];
}
$animal = "cow";
print animal_sound($animal);
</code></pre>
http://stackoverflow.com/questions/1741357/getting-ajax-content-into-the-dom-or-registering-an-object-with-jquery-via-an-onc0Getting AJAX content into the DOM or registering an object with jQuery via an onClick event?Sam1522009-11-16T10:39:07Z2009-11-16T10:48:58Z
<p>I have a code setup something like below, the image is part of a block of HTML and is being loaded with AJAX so I can't get a direct handle on it using it's class or id, so I'm passing the object into a function and then picking it up with jQuery from there.</p>
<p>I don't like this method, is there any way of registering the image (<strong>or preferably the whole HTML block</strong>) with the dom so I can get a direct handle on it with jQuery and be able to do something like "$(".img").click(function(){});" or is there a more elegant way of doing what I'm trying to do below.</p>
<p>My HTML Page:</p>
<pre><code><img src="m.jpg" onClick="vote(this);" class="img">
</code></pre>
<p>My JS page:</p>
<pre><code>function vote(object)
{
//alert('voted');
$(object).css('display','none');
}
</code></pre>
<p>Thanks guys.</p>
<p><strong>Edit: Thanks everyone who answered, +1 to all. I'm not sure who said it first, but it solved everything. Cheers.</strong></p>
http://stackoverflow.com/questions/1740406/how-to-get-the-file-type-in-php/1740413#17404131Answer by Sam152 for How to get the file type in PHPSam1522009-11-16T06:27:05Z2009-11-16T06:42:22Z<p>This is the one I use and it has never failed me.</p>
<pre><code>function getExtension($str)
{
$i = explode('.', $str);
return strtolower(end($i));
}
</code></pre>
<p>I don't know if you can check the actual original file extension if someone has renamed it, <s>you would have to have the spec of every file type you were checking for</s> I'm not sure how easy it is to tell. But you could verify something was an image like this:</p>
<pre><code>function isImage($file)
{
if(@getimagesize($file) == false)
return false;
else
return true;
}
</code></pre>
<p>Summing up</p>
<pre><code>if(isImage($file) && getExtention($file) == "jpg")
{
//Process, it's a valid image
}
</code></pre>
http://stackoverflow.com/questions/1737665/how-to-apply-picture-for-submit-button/1737674#17376742Answer by Sam152 for How to apply picture for submit buttonSam1522009-11-15T14:40:57Z2009-11-15T14:40:57Z<p>Try this, its an input type that creates and image button that submits the form, it should get the job done. You can also specify the alt text using "value". You might also have to modify the image path, I don't know where your css file was relative to your HTML.</p>
<pre><code><input src="images/search_ic.png" style="width: 32px; height: 32px;" type="image" value="Submit Form!">
</code></pre>
http://stackoverflow.com/questions/1733640/how-to-create-a-function-that-resizes-text-on-a-page-without-javascript/1733654#17336541Answer by Sam152 for How to create a function that resizes text on a page without javascript ?Sam1522009-11-14T08:09:34Z2009-11-14T08:09:34Z<p>I think you are misunderstanding something, you want a C# function for something that is fundamentally client side? Do you want to do it after the page has loaded or before? You can resize text on a page with CSS easily.</p>
<pre><code>body{ font-size:60%; }
</code></pre>
http://stackoverflow.com/questions/1721938/logic-for-a-file-compare/1721946#17219462Answer by Sam152 for Logic for a file compareSam1522009-11-12T12:46:07Z2009-11-12T12:46:07Z<p>I wonder if <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein Distance</a> would help you in this situation. It would give you how similar the two files are but I don't know if you could zero in on the @. Something to look at none the less.</p>
http://stackoverflow.com/questions/1714436/php-array-selecting-results/1714454#17144541Answer by Sam152 for PHP Array selecting resultsSam1522009-11-11T10:56:24Z2009-11-11T10:56:24Z<p>Something like the following? Using this method you could include all manner of condition checking and don't forget you could also use or "||" for selecting a set of results.</p>
<pre><code>foreach($Unmanaged as $result)
{
if($result['speed'] == "100" && $result['size'] == "desk" && $result['uplink'] == "no")
{
echo $result['name'];
}
}
</code></pre>
http://stackoverflow.com/questions/1707509/browser-issue-textbox-width/1707523#17075230Answer by Sam152 for Browser issue - textbox widthSam1522009-11-10T12:14:11Z2009-11-10T12:20:40Z<p>If I understand correctly you are specifying a size in pixels and it is not working (if not, just set a pixel value using "width" in css)?</p>
<pre><code><input type="text" size="20">
</code></pre>
<p>This should be the same size across all browsers, but so should a pixel value specified in a CSS document. Can you post some code and the specific issues you are having with each browser?</p>
http://stackoverflow.com/questions/1695787/what-is-quirks-mode/1695794#16957941Answer by Sam152 for What is quirks mode?Sam1522009-11-08T08:40:18Z2009-11-08T08:45:25Z<p>Quirks mode means your page is running without a document type declared, the document type is defined at the very top of a page and it denotes how the browser should read the HTML. This is StackOverflows doctype:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
<p>w3.org specifies web standards and document types, because Stack Overflow uses this doctype it must adhere to the <a href="http://www.w3.org/TR/html4/sgml/dtd.html" rel="nofollow">specification</a> of that doctype. </p>
<blockquote>
<p>This is HTML 4.01 Strict DTD, which
excludes the presentation attributes
and elements that W3C expects to phase
out as support for style sheets
matures. Authors should use the Strict
DTD when possible, but may use the
Transitional DTD when support for
presentation attribute and elements is
required.</p>
</blockquote>
http://stackoverflow.com/questions/1695756/how-do-i-remove-parts-of-a-sentence/1695760#16957609Answer by Sam152 for How do I remove parts of a sentence?Sam1522009-11-08T08:25:51Z2009-11-08T08:25:51Z<p>Try this:</p>
<pre><code>$line="Hello! You are with Andy. Good job!";
$bad=array("Hello! You are with ",". Good job!");
$name = str_replace($bad,"",$line);
echo $name;
</code></pre>
http://stackoverflow.com/questions/1695669/css-centering-the-div-content-not-div-itself/1695672#16956722Answer by Sam152 for CSS - centering the DIV content, not DIV itself.Sam1522009-11-08T07:35:15Z2009-11-08T07:43:10Z<p>This should do it for you:</p>
<pre><code>div#containerDiv
{
margin-left: auto ;
margin-right: auto ;
text-align: center ;
}
</code></pre>
<p>In response to your comment, it's pretty hard to vertically align something the way you want to. I'd recommend something like:</p>
<pre><code>div#containerDiv > img
{
margin-top: 15px ;
/* Where 15 is the amount of space required to center the image */
}
</code></pre>
http://stackoverflow.com/questions/1691574/if-handcoded-webpage-displays-the-same-as-wysiwyg-generated-page-what-did-i-gain/1695066#16950661Answer by Sam152 for If handcoded webpage displays the same as WYSIWYG generated page, what did I gain? Can I compete with WYSIWYG?Sam1522009-11-08T01:39:25Z2009-11-08T01:39:25Z<p>More complex pages cannot be implemented with a WYSIWYG editor, once you truly know HTML and CSS, the range of things you can do is amazing. </p>
http://stackoverflow.com/questions/1692060/what-is-the-best-way-to-store-users-images-using-php-and-mysql/1692066#16920660Answer by Sam152 for What is the best way to store users images using PHP and MySQL?Sam1522009-11-07T05:10:07Z2009-11-07T05:10:07Z<p>If I were you, I would just save the image somewhere in your sites directory and then save the link to the image in MySQL, if you really want to save it in a database, I would read it into a string and then base64_encode() it and then save it in the database.</p>
<p>There are all sorts of little troubles you will face by storing them in a database, you will have to create scripts to echo them back out ect, and the server and database load will be greatly increased. If I were you, I'd just store the reference.</p>
http://stackoverflow.com/questions/556162/is-there-a-way-to-emulate-the-whois-tool-using-php/556169#5561693Answer by Sam152 for Is there a way to emulate the 'whois' tool using php?Sam1522009-02-17T10:07:33Z2009-11-05T01:35:40Z<p>You can use the <a href="http://www.nott.org/blog/php-whois-script.html" rel="nofollow">PHP Whois API</a>. This will allow you access to all the whois records. To use that function there is a link at the bottom of that page to <a href="http://www.phpclasses.org/browse/package/360.html" rel="nofollow">a class</a>. Make sure you include that too.</p>
http://stackoverflow.com/questions/1673611/what-is-my-placement-on-google/1673638#16736381Answer by Sam152 for What is my placement on google?Sam1522009-11-04T13:04:11Z2009-11-04T13:04:11Z<p>I would recommend going via Google webmaster tools, they have much more in depth stats of how you rank for what and you will be going through the official channel and not some potentially shady service. You can look at:</p>
<ul>
<li>The keywords Google sees in your site</li>
<li>The keywords for which your site is appearing</li>
<li>The top keywords people are clicking through to your site</li>
<li>The links Google is spotting in and out of your site</li>
</ul>
http://stackoverflow.com/questions/1656744/when-not-to-close-a-php-file/1656750#16567503Answer by Sam152 for When not to close a php file?Sam1522009-11-01T09:42:36Z2009-11-01T09:56:36Z<p>Well, if you have an include file like config.php and you do not want it to output any characters because it's not meant to or you don't want to trigger "headers already sent" you can leave the closing tag off to make sure no whitespace is sent to the browser. You will find that files that are <strong>pure PHP</strong> and do not contain any content to be outputted, will generally not include a closing tag.</p>
<p>The bottom line is you don't want to prematurly inject content before any headers are set. This is talked about in depth <a href="http://choosetheforce.blogspot.com/2008/05/should-you-close-that-php-tag.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1581778/how-do-you-rotate-a-sprite-around-its-center-by-caclulating-a-new-x-and-y-positio4How do you rotate a sprite around its center by caclulating a new x and y position?Sam1522009-10-17T09:02:40Z2009-10-31T02:12:37Z
<p>I'm using Dark GDK and C++ to create a simple 2d game. I'm rotating an object but it rotates from the top left corner of the sprite.</p>
<p>I have the following variables available:</p>
<ul>
<li>PlayerX </li>
<li>PlayerY</li>
<li>PlayerWidth</li>
<li>PlayerHeight </li>
<li>RotateAngle (360 > x > 0)</li>
</ul>
<p>Is there an algorithm that will modify the pivot point of the sprite, preferable to the center?</p>
<p>Here is a <em>small</em> code sample:</p>
<pre><code>void Player::Move( void )
{
if ( checkLeft() )
{
PlayerX -= PlayerSpeed;
if ( PlayerX < 0 )
PlayerX = 0;
}
if ( checkRight() )
{
PlayerX += PlayerSpeed ;
if ( PlayerX > 800 - PlayerWidth )
PlayerX = 800 - PlayerWidth;
}
if ( checkUp())
{
PlayerY -= PlayerSpeed;
if ( PlayerY < 0 )
PlayerY = 0;
}
if ( checkDown())
{
PlayerY += PlayerSpeed;
if ( PlayerY > 600 - PlayerHeight)
PlayerY = 600 - PlayerHeight;
}
RotateAngle += 5;
if(RotateAngle > 360)
RotateAngle -=360;
dbRotateSprite(Handle,RotateAngle);
dbSprite ( 1 , PlayerX , PlayerY , Handle );
}
</code></pre>
<p><strong>Edit</strong></p>
<p>I'm considering opening up some reputation for this question, I have yet to be provided with an answer that works for me. If someone can provide an actual code sample that does the job, I'd be very happy. </p>
<p>The problem with Blindy's answer is that no matter how much I simply translate it back or forth, the spirte still rotates around the top left hand corner and moving it somewhere rotating around the top left corner, then moving it back to the same position accomplishes nothing. Here is what I believe to be going on:</p>
<p><img src="http://img248.imageshack.us/img248/6717/36512474.png" alt="alt text" /></p>
<p>Just so there is no confusion I have created a an image of what is going on. The left shows what is actually happening and the right shows what I need to happen.</p>
<p><img src="http://img101.imageshack.us/img101/1593/36679446.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1599510/filter-mysql-results-help/1599550#15995501Answer by Sam152 for Filter mysql results helpSam1522009-10-21T08:56:26Z2009-10-21T09:06:12Z<p>You actually modify the MySQL query to filter the results for you and then run the loop as it would normally. This means one loop and you don't have to maintain 3 versions of it.</p>
<pre><code> if ($ads_shown=='1'){ $extra_query = "";}
else if ($ads_shown=='2'){$extra_query = "WHERE `type` = 'Private'";}
else if ($ads_shown=='3'){$extra_query = "WHERE `type` = 'Company'";}
$qry_result="SELECT * FROM `ads` ".$extra_query." LIMIT 10";
while($row = mysql_fetch_array($qry_result))
{
}
</code></pre>
<p>Of course you are going to need to adapt the code to suit your purposes, but it should work once you get it going. Make sure <code>type</code> and the values for <code>type</code> correctly correlate to whats in your MySQL table.</p>
<p><strong>Update:</strong></p>
<p>There is no real reason this cannot happen before the query but if you insist on it here goes:</p>
<pre><code> while($row = mysql_fetch_array($qry_result))
{
if ($row['type']==$ads_shown) //Where 'type' denotes the type of advert
{
//Do stuff
}
}
</code></pre>
<p>This is less efficient because all the data is being grabbed from MySQL and not just the stuff you need. But assuming there is a field in your table called 'type' that you use to store the type of advert and assuming you have set the value of $ads_shown to correspond, it should work fine.</p>
http://stackoverflow.com/questions/602168/in-css-what-is-the-difference-between-and-when-declaring-a-set-of-styles5In CSS what is the difference between "." and "#" when declaring a set of styles?Sam1522009-03-02T12:36:51Z2009-10-20T14:02:44Z
<p>What is the difference between "#" and "." when declaring a set of styles for a particular element? Here are two examples.</p>
<pre><code>.selector {
background-color:red;
property:value;
}
#selector {
background-color:red;
property:value;
}
</code></pre>
http://stackoverflow.com/questions/1594206/php-prevent-users-from-accessing-a-page-while-not-logged-in/1594245#15942453Answer by Sam152 for PHP, Prevent users from accessing a page while not logged in?Sam1522009-10-20T12:26:06Z2009-10-20T12:26:06Z<p>As Svetlozar Angelov pointed out the following code would work well:</p>
<pre><code>if (!isset($_SESSION['nID']))
header("Location: login.php");
</code></pre>
<p><em>However..</em> this would not actually secure the page against users who really wanted access. You need to make some adjustments:</p>
<pre><code>if (!isset($_SESSION['nID']))
{
header("Location: login.php");
die();
}
</code></pre>
<p>This prevents bots and savy users who know how to ignore browser headers from getting into the page and causing problems. It also allows the page to stop executing the rest of the page and to save resources.</p>
<p>Its also noteworthy that $_SESSION['nID'] can be swapped out for any other variable you are using to store usernames or id's.</p>
http://stackoverflow.com/questions/527700/which-language-to-learn-c-c-or-c5Which language to learn: C, C# or C++?Sam1522009-02-09T10:52:58Z2009-10-19T20:23:36Z
<p>I'm want to learn one of the above languages. I'm a PHP/HTML/CSS programmer and I would like to get into desktop applications. I need something pretty powerful and I would like to be able to create applications with Windows GUI's. </p>
<p>What would the Stack Overflow community recommend? Is there any knowledge I should have before diving into these languages?</p>
http://stackoverflow.com/questions/1483478/is-there-a-site-for-testing/1483523#14835232Answer by Sam152 for Is there a site for testing?Sam1522009-09-27T12:53:58Z2009-09-30T04:41:24Z<p>You can try the <a href="http://www.acidtests.org/" rel="nofollow">acid tests</a>, they are to ensure your program is standards compliant. It's not exactly what you asked for but it's a step in the right direction. Most browsers handle broken pages and quirks in different ways and people don't often want to test to see if their broken site renders brokenly in different browsers so I don't think there is going to be something specifically for you but it wouldn't be that hard to do yourself if you wanted to specifically break your program.</p>
<p>Eg.</p>
<pre><code><sCriPt
type="text/javascript"
>
/* <span class="*/>awesome"> // */
</script>
<b <i>>a</></b>
<body type="muscular"></body>
<! text
--
</code></pre>
<p>I'd like to point you to <a href="http://www.adobe.com/devnet/air/" rel="nofollow">Adobe Air</a>, I think it would serve your purposes:</p>
<blockquote>
<p>Adobe AIR is a cross-operating system
runtime that enables you to use your
existing HTML/Ajax, Flex, or Flash web
development skills and tools to build
and deploy rich Internet applications
to the desktop.</p>
</blockquote>
http://stackoverflow.com/questions/1830568/css-trick-to-conjoin-divs/1830577#1830577Comment by Sam152 on Css trick to conjoin divs.Sam1522009-12-02T05:55:17Z2009-12-02T05:55:17ZIt shouldn't as long as it is wrapped in mainContainer.http://stackoverflow.com/questions/1807217/if-get-variable-is-equal-to-array/1807220#1807220Comment by Sam152 on If [Get Variable] is equal to [Array]Sam1522009-11-27T08:34:17Z2009-11-27T08:34:17ZIt's not my code, maybe the OP intends to add more instructions within the curly brackets.http://stackoverflow.com/questions/1788150/how-to-encrypt-string-in-php/1788160#1788160Comment by Sam152 on how to encrypt string in phpSam1522009-11-24T06:42:02Z2009-11-24T06:42:02ZThis has been beaten to death on meta, "easily googled" questions and questions for beginners are welcomed on stack overflow because the site aims to be a complete resource for developers, one that can be maintained an kept up to date with the wiki features. The bottom line is, someone looking at this answer would not be any better off with a link they could have found themselves. Just because you have no first hand experience with the functions that the OP could benefit from, it doesn't mean that the question is invalid.http://stackoverflow.com/questions/1788150/how-to-encrypt-string-in-php/1788160#1788160Comment by Sam152 on how to encrypt string in phpSam1522009-11-24T06:30:03Z2009-11-24T06:30:03ZThere is nothing wrong with building a list of basic questions on stack overflow, <a href="http://stackoverflow.com/questions/1003841" rel="nofollow">stackoverflow.com/questions/1003841</a>, enough said. You are lazy for thinking you can justify an answer with 1 link.http://stackoverflow.com/questions/1788150/how-to-encrypt-string-in-php/1788160#1788160Comment by Sam152 on how to encrypt string in phpSam1522009-11-24T06:18:10Z2009-11-24T06:18:10ZAnyone can link to that page, why not show how to actually use the functions in the context he has provided. -1http://stackoverflow.com/questions/1781349/how-to-calculate-first-n-prime-numbers/1781361#1781361Comment by Sam152 on How to calculate first n prime numbers?Sam1522009-11-23T06:31:13Z2009-11-23T06:31:13ZI made a clarification.http://stackoverflow.com/questions/1777820/php-variable-in-a-function-name/1777829#1777829Comment by Sam152 on PHP: Variable in a function nameSam1522009-11-22T04:47:17Z2009-11-22T04:47:17ZAnd comments use <i>a different</i> form of <i>markup</i>.http://stackoverflow.com/questions/1777820/php-variable-in-a-function-name/1777829#1777829Comment by Sam152 on PHP: Variable in a function nameSam1522009-11-22T04:46:46Z2009-11-22T04:46:46ZMaybe you need a search class.http://stackoverflow.com/questions/1777820/php-variable-in-a-function-name/1777829#1777829Comment by Sam152 on PHP: Variable in a function nameSam1522009-11-22T04:42:27Z2009-11-22T04:42:27Z1 function that does the same thing as 2 functions?http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1697445#1697445Comment by Sam152 on What's your most controversial programming opinion?Sam1522009-11-18T14:19:16Z2009-11-18T14:19:16Z-1, totally disagree. There is massive satisfaction of finishing a class that cleans up your code so much and adds so much more power to your project. http://stackoverflow.com/questions/1747230/how-can-i-use-http-authentication-for-logging-users-in-via-cookies-but-not-retainComment by Sam152 on How can I use HTTP authentication for logging users in via cookies but not retaining any info sent in the headers?Sam1522009-11-17T07:51:46Z2009-11-17T07:51:46ZCorrect. I'd be good to cut down on the number of headers that need to be processed on both ends.http://stackoverflow.com/questions/1501939/html-jquery-response-is-cached-on-ieComment by Sam152 on HTML jquery response is cached on IESam1522009-11-16T07:17:25Z2009-11-16T07:17:25ZYou can also set the headers of the page you are requesting not to cache.http://stackoverflow.com/questions/1740406/how-to-get-the-file-type-in-php/1740443#1740443Comment by Sam152 on How to get the file type in PHPSam1522009-11-16T06:53:25Z2009-11-16T06:53:25ZWhoa, cletus, you are based out of Perth? I live in the same city as stack overflow ranked user #4. http://stackoverflow.com/questions/1740406/how-to-get-the-file-type-in-php/1740413#1740413Comment by Sam152 on How to get the file type in PHPSam1522009-11-16T06:41:18Z2009-11-16T06:41:18ZWhoops, thanks thephpdev & DouweM. Missed that.http://stackoverflow.com/questions/1737469/very-simple-ajax-integration-in-just-one-functionComment by Sam152 on Very simple AJAX integration in just one functionSam1522009-11-15T13:07:27Z2009-11-15T13:07:27Z"enables AJAX page updates without anything else required from the coder", isn't that what jQuery does?