User Carson Myers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:48:31Z http://stackoverflow.com/feeds/user/84478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1879221/making-a-php-function-that-if-mysql-returns-0-rows-return-false/1880357#1880357 0 Answer by Carson Myers for making a php function that If mysql returns 0 rows, return false Carson Myers 2009-12-10T11:25:11Z 2009-12-10T11:25:11Z <p>just to let you know, you should really be calling <code>mysql_real_escape_string()</code> on <code>$id</code>, otherwise you're leaving an SQL injection vulnerability in your code.</p> http://stackoverflow.com/questions/1879939/php-if-then-else-statement-not-working/1880251#1880251 2 Answer by Carson Myers for PHP if-then-else statement not working. Carson Myers 2009-12-10T11:03:20Z 2009-12-10T11:09:08Z <p>you can use <code>$_GET['sorting']</code> or <code>$_REQUEST['sorting']</code> if it could come in by either <code>get</code> or <code>post</code>, but why not do this?</p> <pre><code>$query = "SELECT * FROM `vehicles`"; $sort_values = array( 1 =&gt; 'year', 'make', 'miles', 'downpay', 'pricepay', 'pricecash' ); $sort_number = $_GET['sorting']; if( $sort_number &lt;= count($sort_values) ) { $query .= " ORDER BY `{$sort_values[ $sort_number ]}` DESC"; } $result = mysql_query($query); </code></pre> <p>note that the <code>1 =&gt; </code> portion of the array is because you 1-indexed your list of queries.<br> the reason for the <code>&lt;=</code> portion of the if statement is for that reason too -- if you 0-indexed it, you would just use <code>&lt;</code>.</p> <p>It may not seem like it yet, but you'll quickly find out that it's worth it to try and find ways to write less code. Using the array means you don't have to copy / paste any code (repeatedly writing <code>$result = mysql_query(...);</code>, etc) and it is virtually effortless to add new columns to your table, should you ever need to display more information.</p> <p>One might even fetch the column names from the database directly and avoid ever touching this code again.</p> http://stackoverflow.com/questions/1609563/uri-codeigniter-library-not-working 0 URI codeigniter library not working Carson Myers 2009-10-22T19:52:02Z 2009-12-04T09:09:00Z <p>I'm just learning codeigniter, and I seem to have run into something that is a little strange. I'm using the URI routing feature but need to get the URI segments of the re-routed URI.</p> <p>This is one of the routes:</p> <pre><code>$route['content'] = "site/display/main template/content"; </code></pre> <p>and when visiting <code>http://lipsum.localhost/content</code> it loads the controller, but it won't let me use the URI class:</p> <pre><code>class Site extends Controller { function display($template, $page) { echo "display&lt;br&gt;"; $this-&gt;load-&gt;library('uri'); echo $this-&gt;uri-&gt;rsegment(1, 0)."&lt;br&gt;"; echo $this-&gt;uri-&gt;rsegment(2, 0)."&lt;br&gt;"; echo $this-&gt;uri-&gt;rsegment(3, 0)."&lt;br&gt;"; echo $this-&gt;uri-&gt;rsegment(4, 0)."&lt;br&gt;"; } } </code></pre> <p>when I visit the page, it just displays</p> <pre> display 0 0 0 0 </pre> <p>Basically this code should load a template and then pass <code>$page</code> to it so it can load a section of a website. So 'content' might use 'main template' as the template, and then pass 'content' to it as the page to load. But I also want to be able to pass '/products/whatever' to it, etc -- so I want to cycle through the URI segments to get the full "path" to the page. How can I make it work? And, why is what I have not working?</p> http://stackoverflow.com/questions/1814047/java-newbie-instantiating-unknown-number-of-objects/1814057#1814057 0 Answer by Carson Myers for (Java newbie) Instantiating unknown number of objects Carson Myers 2009-11-28T23:01:39Z 2009-11-28T23:01:39Z <p>A list and loop?</p> http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php 0 getting the "include path" to a file in PHP Carson Myers 2009-11-26T07:27:53Z 2009-11-26T07:47:37Z <p>I can get the currently executing file with the <code>__FILE__</code> magic PHP constant, but this gives me <code>/var/www/vhosts/.../httpdocs/stacktrace.php</code>. I am trying to get the name of the file so I can pass it into a hidden form field, and then run that script again after the form is submitted.</p> <p>The script whose file name I am trying to get could be named anything, it's designed to be copied and renamed to any part of a site.</p> <p>The script will always be included, it'll never be 'the' executed script.</p> <p>I need to be able to find the path to the file, as it would be used in an include directive (i.e. relative to the include path).</p> <p>I had hoped using <code>ini_get('include_path')</code> would help me (if it was <code>/var/www/vhosts/.../httpdocs/</code> then I could just cut that part out of the script's file path and it would work), but that just gave me <code>.:.:.:</code>. I don't even know what that means.</p> <p>Any push in the right direction would help tonnes.</p> http://stackoverflow.com/questions/1801928/get-the-file-constant-for-a-functions-caller-in-php 1 Get the __FILE__ constant for a function's caller in PHP Carson Myers 2009-11-26T06:43:17Z 2009-11-26T06:57:28Z <p>I know the <code>__FILE__</code> magic constant in PHP will turn into the full path and filename of the currently executing file. But is there a way I can get the same information for a function's calling file? For example:</p> <pre><code>//foo.php: include "bar.php"; call_it(); //bar.php function call_it() { echo "Calling file: ".__CALLING_FILE__; } </code></pre> <p>which would output <code>Calling file: ....../foo.php</code>.</p> <p>I know there's no <code>__CALLING_FILE__</code> magic constant, or a magic constant to handle this, but is there a way I can get that information? The least-hackish solution would be ideal (eg. using a stack trace would be pretty hacky) but in the end I just need it to work.</p> http://stackoverflow.com/questions/1762135/accessing-private-variable-from-member-function-in-php 1 accessing private variable from member function in PHP Carson Myers 2009-11-19T09:53:19Z 2009-11-19T10:21:35Z <p>I have derived a class from <code>Exception</code>, basically like so:</p> <pre><code>class MyException extends Exception { private $_type; public function type() { return $this-&gt;_type; //line 74 } public function __toString() { include "sometemplate.php"; return ""; } } </code></pre> <p>Then, I derived from <code>MyException</code> like so:</p> <pre><code>class SpecialException extends MyException { private $_type = "superspecial"; } </code></pre> <p>If I <code>throw new SpecialException("bla")</code> from a function, catch it, and go <code>echo $e</code>, then the <code>__toString</code> function should load a template, display that, and then not actually return anything to echo.</p> <p>This is basically what's in the template file</p> <pre><code>&lt;div class="&lt;?php echo $this-&gt;type(); ?&gt;class"&gt; &lt;p&gt; &lt;?php echo $this-&gt;message; ?&gt; &lt;/p&gt; &lt;/div&gt; </code></pre> <p>in my mind, this should definitely work. However, I get the following error when an exception is thrown and I try to display it:</p> <blockquote> <p><strong>Fatal error</strong>: Cannot access private property SpecialException::$_type in <strong>C:\path\to\exceptions.php</strong> on line <strong>74</strong></p> </blockquote> <p>Can anyone explain why I am breaking the rules here? Am I doing something horribly witty with this code? Is there a much more idiomatic way to handle this situation? The point of the <code>$_type</code> variable is (as shown) that I want a different div class to be used depending on the type of exception caught.</p> http://stackoverflow.com/questions/1737023/how-do-i-check-out-a-subversion-repository-from-a-network-share 0 How do I check out a subversion repository from a network share? Carson Myers 2009-11-15T08:51:03Z 2009-11-16T13:08:43Z <p>I have a Subversion repository on my laptop in my room (windows Vista), but I want to check it out to a computer upstairs (Ubuntu Linux). I put the repository on a network share but I'm not sure how I can check it out to ubuntu.</p> <p>Note that I don't have subversion server set up on my laptop, I'm just trying todo a checkout from a network directory as if it were local to this computer. What are my options?</p> http://stackoverflow.com/questions/1733548/is-it-a-bad-idea-to-rely-on-php-5-features-when-writing-an-application-you-expect 1 Is it a bad idea to rely on PHP 5 features when writing an application you expect to be portable? Carson Myers 2009-11-14T06:57:21Z 2009-11-14T14:34:52Z <p>If I'm building a PHP system which I expect to port to many different servers, should I avoid relying on PHP 5 features such as exceptions and final methods? How widespread is PHP 5 by now? Should I be worried about compatibility and ditch exceptions and other features not available in PHP 4?</p> http://stackoverflow.com/questions/1678281/how-can-i-bust-out-of-a-php-class-initialization-if-the-user-isnt-logged-in 0 how can I bust out of a PHP class initialization if the user isn't logged in? Carson Myers 2009-11-05T04:06:35Z 2009-11-05T04:27:09Z <p>I'm writing an admin section to a site using CodeIgniter. I am writing an <code>Admin</code> class that extends the <code>Controller</code> class, and then controllers for admin pages will extend <code>Admin</code>. I do this because I want the <code>Admin</code> class to check the user's session to make sure he is logged in -- and if not, to show the login page and abort initialization of the class.</p> <p>To me, that seems like a nice abstraction -- not worrying about the user being logged in for any of the administration pages and functions, just writing them and letting the super class worry about it. But how should I do this?</p> <p>If I throw an exception from the <code>Admin</code> constructor, will that stop the sub class extending it from being created? is there a better way to do this? @anyone who has used MVC before, have you dealt with something like this before?</p> http://stackoverflow.com/questions/1678010/php-server-on-local-machine/1678027#1678027 0 Answer by Carson Myers for PHP server on local machine? Carson Myers 2009-11-05T02:53:15Z 2009-11-05T02:53:15Z <p>Use <a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow">Apache Friends XAMPP</a>. It will set up Apache HTTP server, PHP 5 and MySQL 5 (as far as I know, there's probably some more than that). You don't need to know how to configure apache (or any of the modules) to use it.</p> <p>You will have an htdocs directory which Apache will serve (accessible by <a href="http://localhost/" rel="nofollow">http://localhost/</a>) and should be able to put your PHP files there. With my installation, it is at C:\xampp\htdocs.</p> http://stackoverflow.com/questions/1669944/can-i-use-an-open-source-framework-in-a-project-i-plan-to-profit-from 3 Can I use an open source framework in a project I plan to profit from? Carson Myers 2009-11-03T20:27:53Z 2009-11-03T20:36:55Z <p>I'm building a CMS on codeigniter. I'm modifying codeigniter in small ways to make it work with my ideas more seamlessly. But I wonder - are there any restrictions on how I can profit from it? I would think I could build a website with the CMS and charge for it. But what if say, later on I buy a server and set up several accounts for several users of my CMS, and each one remotely controls several different sites, that may or may not be created by me -- can I charge for the use of it then? What if much later on I modify it to do lots of neat stuff for local networks, can I sell licenses for people to set it up on site?</p> <p>Not that I'm expecting to get that far with it, but I have some nice ideas for it that I haven't seen in CMS software before, and if they are well received, well I just want to know if there is a legal side to this if I use something like codeigniter to build it.</p> <p>Would I be better off building my own small framework specific to this project?</p> http://stackoverflow.com/questions/1658530/load-numbers-from-text-file-in-c/1658533#1658533 1 Answer by Carson Myers for Load numbers from text file in C Carson Myers 2009-11-01T22:08:16Z 2009-11-01T22:08:16Z <p>how about <a href="http://www.cplusplus.com/reference/clibrary/cstring/strtok/" rel="nofollow">strtok</a>?</p> http://stackoverflow.com/questions/1610411/whats-the-best-way-to-represent-a-many-to-many-relationship-in-a-database 0 what's the best way to represent a many-to-many relationship in a database? Carson Myers 2009-10-22T22:41:31Z 2009-10-22T23:52:37Z <p>If I have a number of users and a number of pages, and each user can administrate any number of the pages, and each page can be administrated by any number of the administrators, how could I store all of these permissions in a database?</p> <p>For example, I could have a field in the users table, which is just a comma-delimited list of page IDs, or a similar field in for each page (administrated by... etc). But that would require that I process the string after it comes out of the database.</p> <p>I could give each user their own table, with a key=>value kind of layout, where I'd have user=>someuser, name=>some guy, permissions=>whatever, page_id=>4, page_id=>8, page_id=>12, etc. But that seems messy and would require extra permissions for the mysql user.</p> <p>Assuming the number of pages will be relatively small (it will be), I could put a 'flags' sort of field into the users table, a 32 bit INT (there would not be more than 32 'pages' in this implementation). but that would only allow for an on/off sort of privilege.</p> <p>I've also considered having a user table, and then each user entry point to a permissions table for that user, which would have a row for each page with the appropriate permissions for that user -- that's cleaner than the other "table-per-user" solution I listed but again also need extra privileges for the mysql account.</p> <p>Any other ideas? What, in your experience, winds up being the most pain-free solution to this?</p> http://stackoverflow.com/questions/1253053/cs-bad-functions-vs-their-good-alternatives 11 C's "bad" functions vs. their "good" alternatives Carson Myers 2009-08-10T03:57:33Z 2009-10-22T14:52:48Z <p>What are the "bad" functions in C, and what are their "good" alternatives?</p> <p>Why are the bad ones bad, and what makes the good ones better?</p> <p>I know, for example, <code>gets()</code> is "bad" because it doesn't have any form of bounds checking. What is its better alternative? <code>fgets()</code>?</p> <p>I've heard <code>scanf()</code> is bad but I can't remember why. Anyone know? What's the best alternative?</p> <p>Are there more?</p> http://stackoverflow.com/questions/1604139/what-does-the-mysql-length-parameter-do-for-different-types 0 what does the mySQL Length parameter do for different types? Carson Myers 2009-10-21T23:03:13Z 2009-10-21T23:06:29Z <p>I've used MySQL (via PHPMyAdmin) a lot before but never really understood half of it. I'm assuming that for <code>varchar</code>, length is the maximum length of a string that can go there. But what about for <code>Int</code>? According to <a href="http://dev.mysql.com/doc/refman/5.0/en/numeric-types.html" rel="nofollow">this</a>, <code>Int</code> is a 4 byte integer, so why have a Length parameter for it? Is it the number of bits for that integer? Why have seperate numeric types when you can just specify the size of <code>Int</code>? What about for other data types?</p> http://stackoverflow.com/questions/1512899/c-largest-string-from-a-big-one/1512934#1512934 0 Answer by Carson Myers for C - Largest String From a Big One Carson Myers 2009-10-03T05:55:44Z 2009-10-21T18:41:03Z <p>While I waited for you to post this as a question I coded something up.</p> <p>This code iterates through a string passed to a "longest" function, and when it finds the first of a sequence of letters it sets a pointer to it and starts counting the length of it. If it is the longest sequence of letters yet seen, it sets another pointer (the '<code>maxStringStart</code>' pointer) to the beginning of that sequence until it finds a longer one.</p> <p>At the end, it allocates enough room for the new string and returns a pointer to it.</p> <pre><code>#include&lt;stdio.h&gt; #include&lt;stdlib.h&gt; #include&lt;string.h&gt; int isLetter(char c){ return ( (c &gt;= 'a' &amp;&amp; c &lt;= 'z') || (c &gt;= 'A' &amp;&amp; c &lt;= 'Z') ); } char *longest(char *s) { char *newString = 0; int maxLength = 0; char *maxStringStart = 0; int curLength = 0; char *curStringStart = 0; do { //reset the current string length and skip this //iteration if it's not a letter if( ! isLetter(*s)) { curLength = 0; continue; } //increase the current sequence length. If the length before //incrementing is zero, then it's the first letter of the sequence: //set the pointer to the beginning of the sequence of letters if(curLength++ == 0) curStringStart = s; //if this is the longest sequence so far, set the //maxStringStart pointer to the beginning of it //and start increasing the max length. if(curLength &gt; maxLength) { maxStringStart = curStringStart; maxLength++; } } while(*s++); //return null pointer if there were no letters in the string, //or if we can't allocate any memory. if(maxLength == 0) return NULL; if( ! (newString = malloc(maxLength + 1)) ) return NULL; //copy the longest string into our newly allocated block of //memory (see my update for the strlen() only requirement) //and null-terminate the string by putting 0 at the end of it. memcpy(newString, maxStringStart, maxLength); newString[maxLength + 1] = 0; return newString; } int main(int argc, char *argv[]) { int i; for(i = 1; i &lt; argc; i++) { printf("longest all-letter string in argument %d:\n", i); printf(" argument: \"%s\"\n", argv[i]); printf(" longest: \"%s\"\n\n", longest(argv[i])); } return 0; } </code></pre> <p>This is my solution in simple C, without any data structures.</p> <p>I can run it in my terminal like this:</p> <pre><code>~/c/t $ ./longest "hello there, My name is Carson Myers." "abc123defg4567hijklmnop890" longest all-letter string in argument 1: argument: "hello there, My name is Carson Myers." longest: "Carson" longest all-letter string in argument 2: argument: "abc123defg4567hijklmnop890" longest: "hijklmnop" ~/c/t $ </code></pre> <p>the criteria for what constitutes a letter could be changed in the <code>isLetter()</code> function easily. For example:</p> <pre><code>return ( (c &gt;= 'a' &amp;&amp; c &lt;= 'z') || (c &gt;= 'A' &amp;&amp; c &lt;= 'Z') || (c == '.') || (c == ' ') || (c == ',') ); </code></pre> <p>would count periods, commas and spaces as 'letters' also.</p> <p><hr /></p> <p>as per your update:</p> <p>replace <code>memcpy(newString, maxStringStart, maxLength);</code> with:</p> <pre><code>int i; for(i = 0; i &lt; maxLength; i++) newString[i] = maxStringStart[i]; </code></pre> <p>however, this problem would be much more easily solved with the use of the C standard library:</p> <pre><code>char *longest(char *s) { int longest = 0; int curLength = 0; char *curString = 0; char *longestString = 0; char *tokens = " ,.!?'\"()@$%\r\n;:+-*/\\"; curString = strtok(s, tokens); do { curLength = strlen(curString); if( curLength &gt; longest ) { longest = curLength; longestString = curString; } } while( curString = strtok(NULL, tokens) ); char *newString = 0; if( longest == 0 ) return NULL; if( ! (newString = malloc(longest + 1)) ) return NULL; strcpy(newString, longestString); return newString; } </code></pre> http://stackoverflow.com/questions/1586932/what-is-a-neat-way-of-breaking-out-of-many-for-loops-at-once/1590269#1590269 1 Answer by Carson Myers for What is a neat way of breaking out of many for loops at once? Carson Myers 2009-10-19T18:20:01Z 2009-10-19T18:20:01Z <p>a little bit of silly self-documenting:</p> <pre><code>int i, j, k; int done = 0; for (i = 0; i &lt; 100 &amp;&amp; ! done; i++) { for (j = 0; j &lt; 100 &amp;&amp; ! done; j++) { for (k = 0; k &lt; 100 &amp;&amp; ! done; k++) { if (k == 50) we_are(done); } } } //... void we_are(int *done) { *done = 1; } </code></pre> <p>but really, you shouldn't have three nested for-loops. You should consider refactoring into different functions and improving your program's logic instead of doing this.</p> <p>While I agree that sometimes <code>goto</code> really is the best solution, I think that any problem to which <code>goto</code> is the solution is a result of poor code.</p> http://stackoverflow.com/questions/886818/how-does-this-code-from-the-c-programming-language-work 1 how does this code from "The C Programming Language" work? Carson Myers 2009-05-20T08:29:31Z 2009-10-19T06:45:45Z <p>I'm reading "The C Programming Language (2nd ed.) and near the beginning, it has examples like this:</p> <pre><code>while((c = getchar()) != EOF) if(c == '\n'){ ++n1; </code></pre> <p>I can see how this would work while reading from a file, and I understand this syntax... But this is just reading from the console--how does one signal end of file when entering characters from a console? I'm using Windows XP... MinGW compiler... Anyways, was this book written for waaay earlier systems with like an EOF button or something?</p> <h2>Update</h2> <p>well, I have one more question, that's just related to how the end-of-file works under Windows.</p> <p>If I just <code>while(getchar()!=EOF);</code>, then I can just keep typing characters until I signal EOF via ^Z. But, I have to write a newline, then hit ^Z, then another newline... Why does it have to be on its own line?</p> http://stackoverflow.com/questions/1371898/is-int-array32-a-pointer-to-an-array-of-32-ints-or-an-array-of-32-pointers-to 5 Is int *array[32] a pointer to an array of 32 ints, or an array of 32 pointers to int? Does it matter? Carson Myers 2009-09-03T07:27:08Z 2009-10-13T20:24:11Z <p>If I write</p> <pre><code>int *columns[32]; </code></pre> <p>am I defining an array with 32 pointers to <code>int</code>s?<br /> Or is it a pointer to an array of 32 <code>int</code>s?</p> <p>How do I differentiate between the two? Is there a difference?</p> http://stackoverflow.com/questions/1511744/calling-grep-from-a-bash-script 0 calling grep from a bash script Carson Myers 2009-10-02T20:53:51Z 2009-10-12T12:03:20Z <p>I'm new to bash scripts (and the *nix shell altogether) but I'm trying to write this script to make grepping a codebase easier.</p> <p>I have written this</p> <pre><code>#!/bin/bash args=("$@"); for arg in args grep arg * */* */*/* */*/*/* */*/*/*/*; done </code></pre> <p>when I try to run it, this is what happens:</p> <pre>~/Work/richmond $ ./f.sh "\$_REQUEST\['a'\]" ./f.sh: line 4: syntax error near unexpected token `grep' ./f.sh: line 4: ` grep arg * */* */*/* */*/*/* */*/*/*/*;' ~/Work/richmond $</pre> <p>How do I do this properly?</p> <p>And, I think a more important question is, how can I make grep recurse through subdirectories properly like this?</p> <p>Any other tips and/or pitfalls with shell scripting and using bash in general would also be appreciated.</p> http://stackoverflow.com/questions/1549182/how-can-i-match-the-domain-part-of-a-url-in-php 0 How can I match the domain part of a URL in PHP? Carson Myers 2009-10-10T21:58:55Z 2009-10-10T22:07:02Z <p>I'm so bad at regexp, but I'm trying to get <code>some/path/image.jpg</code> out of <code>http://somepage.com/some/...etc</code> and trying this method:</p> <pre><code>function removeDomain($string) { return preg_replace("/http:\/\/.*\//", "", $string); } </code></pre> <p>It isn't working -- so far as I can tell it's just returning a blank string. How do I write this regexp?</p> http://stackoverflow.com/questions/1529093/can-i-reset-autoincrement-field-in-mysql 1 can I reset auto_increment field in mySql? Carson Myers 2009-10-07T01:45:49Z 2009-10-07T02:01:34Z <p>Can I reset the auto-increment index of a MySQL table so that it starts counting from zero again?</p> <p>I deleted all the rows in the table--how can I reset that counter as well?</p> http://stackoverflow.com/questions/1518027/can-pages-that-make-heavy-use-of-ajax-also-be-search-engine-friendly 1 Can pages that make heavy use of AJAX also be search engine friendly? Carson Myers 2009-10-05T02:28:15Z 2009-10-06T08:01:20Z <p>I guess what I mean is, if I make a site that uses AJAX to load some content that I also want search engines to find -- if I make the page work sans-javascript (say, when javascript isn't present, a link goes to <code>site.com?c=somecontent</code> rather than calling a function with <code>$("#content").load("somecontent.html");</code>), will the search engine follow the non-javascript link and be able to index the site well?</p> <p>I suppose this would work if javascript-enabled browsers who followed a search engine link to the <code>?c=somecontent</code> link would still make use of the site normally, right?</p> <p>Is this a really challenging endeavor or can it be done relatively easily if the site is structured properly?</p> http://stackoverflow.com/questions/1514804/can-i-use-jquerys-serialize-and-an-additional-variable-in-a-post-request 0 can I use jQuery's serialize() and an additional variable in a $.post request? Carson Myers 2009-10-03T20:46:38Z 2009-10-03T20:59:44Z <p>Currently, I have this line:</p> <pre><code>$.post("submitmail.php", $("#contactform").serialize(), recvMailStatus); </code></pre> <p>I'm new to jQuery so this may be an absurdly stupid question.<br /> But I'm making this project work with or without javascript, so if a form is submitted with this function, I want submitmail.php to just echo whether or not it was successful. If the form just submits and redirects to submitmail.php, I want it to display something other than a white screen with black text saying "mail sent successfully." To do this I figured I would just <code>post</code> an extra variable "fromjs" or something so that the page can render itself accordingly. What's the best way to do that?</p> http://stackoverflow.com/questions/1512807/when-is-it-good-to-use-exceptions-on-php/1512827#1512827 0 Answer by Carson Myers for When is it good to use Exceptions on PHP? Carson Myers 2009-10-03T04:49:53Z 2009-10-03T04:49:53Z <p>using it if you're using that kind of coding standard. Using both exceptions and return codes can turn into a convoluted mess and slow development (trying to remember how to handle errors for each function). Maybe you don't need a try/catch block in your tiny functions -- but if you structure the script right, you can just throw exceptions from your small functions and have the larger controlling functions calling them in a try block.</p> <p>However, I have read that just using exceptions can easily turn into a convoluted mess as well. Your scripts have to be pretty logically consistent to use them most effectively.</p> http://stackoverflow.com/questions/1512764/c-working-with-char-pointers/1512769#1512769 1 Answer by Carson Myers for C Working with char pointers Carson Myers 2009-10-03T04:17:49Z 2009-10-03T04:24:06Z <p>both <code>ret</code> and <code>n</code> are pointers to the same block of memory. their 'values' are simply memory addresses -- when you change <code>*n</code>, you change <code>*ret</code>, even though <code>n</code> and <code>ret</code> retain their original values.</p> <pre><code>//make n point to the beginning of the block of memory pointed //to by ret n = ret; //iterate through the string which was passed to //the function for ( ;*s != 0; s++) //if the current character is a letter: if (isLetter(*s)) //set the character pointed to by n to //the current character in the string, and then //make n point to the next one. *n++ = *s; </code></pre> <p>note that the loop increments <code>n</code>, and then after the loop sets the last character to 0 (to null terminate the string). Now, <code>n</code> points to the end of the string -- but since <code>ret</code> was never changed it still points to the beginning of the memory that you <code>malloc</code>ed before the loop. When you return it, you're returning a pointer to the new string which is the string you passed to the function, minus all non-letters.</p> <p>Note that after this function returns, it is the caller's responsibility to <code>free()</code> the memory allocated by the function, lest ye roam into memory leaks.</p> http://stackoverflow.com/questions/1485805/whats-the-difference-between-the-printf-and-vprintf-function-families-and-when 1 what's the difference between the printf and vprintf function families, and when should I use one over the other? Carson Myers 2009-09-28T07:14:13Z 2009-09-28T07:18:48Z <p>I understand that the difference between the <code>printf</code>, <code>fprintf</code>, <code>sprintf</code> etc functions and the <code>vprintf</code>, <code>vfprintf</code>, <code>vsprintf</code> etc functions has to do with how they deal with the function arguments. But how specifically? Is there really any reason to use one over the other? Should I just always use <code>printf</code> as that is a more common thing to see in C, or is there a legitimate reason to pick <code>vprintf</code> instead?</p> http://stackoverflow.com/questions/1408417/can-you-compile-php-code 4 Can you "compile" PHP code? Carson Myers 2009-09-11T00:23:28Z 2009-09-26T14:36:39Z <p>I know that PHP is compiled to byte code before it is run on the server, and then that byte code can be cached so that the whole script doesn't have to be re-interpreted with every web access.</p> <p>But can you "compile" php and upload a binary-ish file, which will just be run by the byte code interpreter?</p> http://stackoverflow.com/questions/1475756/i-need-help-understanding-a-simple-javascript-script/1475781#1475781 3 Answer by Carson Myers for I need help understanding a simple JavaScript script Carson Myers 2009-09-25T06:43:00Z 2009-09-25T06:48:50Z <p><code>document.frmMain</code> is a form in the page, and <code>POL_NO</code> and <code>ENDT_NO</code> are fields in the form, presumably listboxes.</p> <p>This code is a simple validation script to make sure you filled out the form correctly.</p> <pre><code>//if POL_NO hasn't been set (no policy number selected): if(document.frmMain.POL_NO.value == "") { //show a message box alert("Select Policy Number"); //clear the value (if any) of ENDT_NO document.frmMain.ENDT_NO.value=""; //set the form focus to POL_NO (select it, as if you had clicked on it) document.frmMain.POL_NO.focus(); //stop the form from being submitted return false; } </code></pre> <p>I'm assuming this code is part of a function which is called by <code>frmMain</code>'s <code>onSubmit</code> event (and event handler) -- when the function returns <code>false</code> the submit is cancelled. Were this not here, it would show the message box, clear <code>ENDT_NO</code>, select <code>POL_NO</code> and then submit anyways.</p> <p>Note that referencing members of a form in the <code>document.formName.fieldName.property</code> fashion is deprecated. The correct way is to use <code>getElementById</code> or a similar function:</p> <pre><code>document.frmMain.ENDT_NO.value = ""; //bad document.getElementById("ENDT_NO").value = ""; //correct </code></pre> http://stackoverflow.com/questions/1879939/php-if-then-else-statement-not-working/1879990#1879990 Comment by Carson Myers on PHP if-then-else statement not working. Carson Myers 2009-12-10T11:17:14Z 2009-12-10T11:17:14Z sql injection won't work in this case, because he checks that the get variable exists in an array. Unless the OP put <code>year;drop database etc</code> into the array. http://stackoverflow.com/questions/1879939/php-if-then-else-statement-not-working/1879951#1879951 Comment by Carson Myers on PHP if-then-else statement not working. Carson Myers 2009-12-10T11:14:37Z 2009-12-10T11:14:37Z I find that using $_GET['...'] can get ugly sometimes, like when you're using get variables as indexes to arrays and have nested []'s. http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php/1802090#1802090 Comment by Carson Myers on getting the "include path" to a file in PHP Carson Myers 2009-11-26T08:03:51Z 2009-11-26T08:03:51Z nevermind, it was already posted. http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php/1802090#1802090 Comment by Carson Myers on getting the "include path" to a file in PHP Carson Myers 2009-11-26T07:44:16Z 2009-11-26T07:44:16Z actually, I found something, I'll post it as an answer http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php Comment by Carson Myers on getting the "include path" to a file in PHP Carson Myers 2009-11-26T07:43:44Z 2009-11-26T07:43:44Z ah, thanks, that's perfect http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php/1802090#1802090 Comment by Carson Myers on getting the "include path" to a file in PHP Carson Myers 2009-11-26T07:42:08Z 2009-11-26T07:42:08Z it seems like this will just give you the full path minus the file name, and using it multiple times will give you one less top directory... I'm trying to turn <code>/var/www/vhosts/.../httpdocs/some/path/to/file.php</code> into <code>some/path/to/file.php</code> http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php/1802090#1802090 Comment by Carson Myers on getting the "include path" to a file in PHP Carson Myers 2009-11-26T07:33:57Z 2009-11-26T07:33:57Z this just gives me the name of the file, and excludes the directories leading up to it that are relative to the include path. http://stackoverflow.com/questions/1801928/get-the-file-constant-for-a-functions-caller-in-php/1801936#1801936 Comment by Carson Myers on Get the __FILE__ constant for a function's caller in PHP Carson Myers 2009-11-26T07:03:32Z 2009-11-26T07:03:32Z alright, so I suppose the PHP stack trace utility is friendlier than I expected it to be, and this seems to be the cleanest way to do what I want. http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer/109117#109117 Comment by Carson Myers on Best algorithm to count the number of set bits in a 32-bit integer? Carson Myers 2009-11-24T18:25:09Z 2009-11-24T18:25:09Z I previewed Hacker's Delight on Amazon and now it's on its way here. Thanks for the recommendation! :D http://stackoverflow.com/questions/58640/great-programming-quotes/59301#59301 Comment by Carson Myers on Great programming quotes Carson Myers 2009-11-23T10:10:24Z 2009-11-23T10:10:24Z @stringer your analogy became lost on me as soon as you called those blocks &quot;tetrominoes.&quot; http://stackoverflow.com/questions/58640/great-programming-quotes/120446#120446 Comment by Carson Myers on Great programming quotes Carson Myers 2009-11-23T10:05:33Z 2009-11-23T10:05:33Z calling him by wrong-value? http://stackoverflow.com/questions/1777944/analogy-a-programming-language-without-namespaces-is-like/1777976#1777976 Comment by Carson Myers on Analogy? A programming language without namespaces is like (...) Carson Myers 2009-11-22T06:16:18Z 2009-11-22T06:16:18Z I don't think this analogy really fits http://stackoverflow.com/questions/1768848/table-cellspacing0-cellpadding0-border0-still-wider-than-tr-why Comment by Carson Myers on <table cellspacing="0" cellpadding="0" border="0"> still wider than <tr>,why? Carson Myers 2009-11-20T09:06:36Z 2009-11-20T09:06:36Z regarding your last edit, that's not reproducing that problem, that's just making your table look the same as the problem one. The obvious solution to the reproduced-problem is to just take the width attribute out of the <code>&lt;table&gt;</code> and <code>&lt;tr&gt;</code> (which doesn't have a supported width property anyway), which doesn't solve your problem at all. http://stackoverflow.com/questions/1769077/width-of-table-and-tr Comment by Carson Myers on Width of <table> and <tr>? Carson Myers 2009-11-20T09:04:44Z 2009-11-20T09:04:44Z why would you re-post the same question with even <i>less</i> detail? http://stackoverflow.com/questions/1766347/why-does-this-compile-with-the-dev-c-compiler-and-not-visual-studios-one/1766361#1766361 Comment by Carson Myers on Why does this compile with the Dev-C++ compiler and not Visual Studio's one ? Carson Myers 2009-11-19T20:48:18Z 2009-11-19T20:48:18Z I fixed the formatting (I think, I did it from my phone)