November 6, 2009 - 2:05 am
Posted in Basics, File System | No Comments
VN:F [1.6.9_936]please wait…Rating: 10.0/10 (1 vote cast)This simple file browser, written in PHP, is a very useful library of functions. This library provides basic functionality of file and directory browsing along with many configurable options.
However this is a basic version, and I just wrote it to use at a client’s website. I will be extending [...]
November 4, 2009 - 12:36 am
Posted in JavaScript | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)All about JavaScript and related to PHP also.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare this on MixxPost this to MySpaceSubmit this to DesignFloatShare this on FacebookTweet [...]
November 4, 2009 - 12:18 am
Posted in Web 2.0 | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)All about Web 2.0 – Standards, Implementation, Uses and etc.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare this on MixxPost this to MySpaceSubmit this to DesignFloatShare this [...]
November 3, 2009 - 6:19 pm
Posted in Basics | 1 Comment
VN:F [1.6.9_936]please wait…Rating: 6.0/10 (1 vote cast)Embed PHP code inside HTML to add some dynamic functionality to your pages.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare this on MixxPost this to MySpaceSubmit this [...]
November 3, 2009 - 6:17 pm
Posted in Basics | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)Common errors you may come across when programming, and the solutions.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare this on MixxPost this to MySpaceSubmit this to DesignFloatShare [...]
November 3, 2009 - 6:16 pm
Posted in Basics | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)Common errors you may come across when programming, and the solutions.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare this on MixxPost this to MySpaceSubmit this to DesignFloatShare [...]
November 3, 2009 - 6:07 pm
Posted in Basics | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)Common errors you may come across when programming, and the solutions.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare this on MixxPost this to MySpaceSubmit this to DesignFloatShare [...]
November 3, 2009 - 6:02 pm
Posted in Basics | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)Used for passing variables between pages on the submission of forms. The twist is, it’s hidden from the user in the URL (address) bar of a browser.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? [...]
November 3, 2009 - 5:58 pm
Posted in Basics | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)Used for passing variables between pages on the submission of forms or manual entry in the URL (address) bar of your browser.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this [...]
November 3, 2009 - 5:57 pm
Posted in Basics | No Comments
VN:F [1.6.9_936]please wait…Rating: 0.0/10 (0 votes cast)Not the trickiest example function, however this will teach you how to output a value created from within the function.
Submit this to Script & StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on DiigoShare this on RedditBuzz up!Stumble upon something good? Share it on StumbleUponShare this on TechnoratiShare [...]
November 23, 2009 - 11:39 am
An improvement can be made to this by lowering iterations as following, just replace:
$gen = $gender;
with
return $gender;
in if clause within the foreach loop. This will stop iterating the loop as soon as it finds the match and rest of the iterations will not occur and will save time.