New pages

From Global Programming Syntax

Jump to: navigation, search
New pages
Hide bots
(Latest | Earliest) View (newer 50) () (20 | 50 | 100 | 250 | 500)
  • 06:52, 5 May 2010 ‎Java - Main class not found (hist) ‎[669 bytes] ‎Cwarn23 (Talk | contribs) (New page: Below is an example script that will have this bug with some IDE's: <code java>public class filename { public void main(String[] args) { // TODO code application logic here ...)
  • 06:51, 5 May 2010 ‎Java - Using html param elements (hist) ‎[1,321 bytes] ‎Cwarn23 (Talk | contribs) (New page: When creating java applets, usually you will want to transfer data from the webpage to the java applet. Then can be done with the param element. Below is an example of the html code used f...)
  • 06:50, 5 May 2010 ‎Java - Variables and Arrays (hist) ‎[6,675 bytes] ‎Cwarn23 (Talk | contribs) (New page: In this page you will be able to see how Java variables and arrays are defined and used. There are many simularities to the method of defining variables and arrays in Java but the main dif...)
  • 06:49, 5 May 2010 ‎Java (hist) ‎[440 bytes] ‎Cwarn23 (Talk | contribs) (New page: Here you may view the java syntax list and note that this list is still in development. With each command (link) below is an article that you can view the usage of the command/function. [h...)
  • 06:41, 5 May 2010 ‎PHP - Website Security Tester Bot (hist) ‎[19,130 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes you will have a website done but don't know how secure it is. Sometimes you just don't have the time to check all those pages. That is why you can use a php security tester bot t...)
  • 06:40, 5 May 2010 ‎PHP - Unix Timestamp Pre-1970 (hist) ‎[14,848 bytes] ‎Cwarn23 (Talk | contribs) (New page: === What is a timestamp === A timestamp is how many seconds have passed by since [January 1st 1970 1:00:00AM]. However the php built in functions can find it difficult to cope with numbers...)
  • 06:39, 5 May 2010 ‎PHP - Times Table Chart - Computer Generated (hist) ‎[1,914 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes you may need to lookup a few sums on a times table chart but can't find a large enought chart. Well with two loops it is possible to make a chart as big you want. All you need to...)
  • 06:38, 5 May 2010 ‎PHP - Strip URL to Domain (hist) ‎[3,002 bytes] ‎Cwarn23 (Talk | contribs) (New page: Have you ever needed to strip a url to just the domain name for some computer generaterated system whether it is for a search engine or a log file. So to solve this rarley used feature I h...)
  • 06:35, 5 May 2010 ‎PHP - Sha1 dehasher (hist) ‎[11,035 bytes] ‎Cwarn23 (Talk | contribs) (New page: Many may wonder how to dehash those hashes. Well, a hash is generally not designed to be dehashed but there are ways around it. One is to have a computer with 2 Petabytes then to just look...)
  • 06:34, 5 May 2010 ‎PHP - Server-side cookies (hist) ‎[8,090 bytes] ‎Cwarn23 (Talk | contribs) (New page: Server-side cookies as I call them are website settings stored on a server in a simular fashion as settings website settings stored on a browser. To achieve this, you need a server-side-la...)
  • 06:33, 5 May 2010 ‎PHP - parseInt (hist) ‎[1,152 bytes] ‎Cwarn23 (Talk | contribs) (New page: You may have heard of a function in the Javascript language called parseInt(). This function by default is not in the php language (to my knowledge) and can be recreated using the below sc...)
  • 06:32, 5 May 2010 ‎PHP - Number Encrypter/Decrypter (hist) ‎[3,432 bytes] ‎Cwarn23 (Talk | contribs) (New page: Although this function supports just about every character on the standard keyboard, this function was originally design for encoding names for urls. So the following is the encoder and de...)
  • 06:29, 5 May 2010 ‎PHP - Making a search engine (hist) ‎[11,612 bytes] ‎Cwarn23 (Talk | contribs) (New page: == A sample script == <code php><form method="post">Scan site: <input type="text" name="site" value="http://" style="width:300px"> <input value="Scan" type="submit"></form> <? set_time_lim...)
  • 06:27, 5 May 2010 ‎PHP - Longer Lasting Cookies (hist) ‎[8,904 bytes] ‎Cwarn23 (Talk | contribs) (New page: To create longer lasting cookies, you will need to store the cookies on the server and so that if the user disables cookies, even thoe their cookies are not active, the can still be retrie...)
  • 06:26, 5 May 2010 ‎PHP - Login System (hist) ‎[1,919 bytes] ‎Cwarn23 (Talk | contribs) (New page: When you have a login system, you will need to use some sort of data storage to keep track of the usernames and passwords. Generally the best solution is a database (eg. MySQL). The below ...)
  • 06:24, 5 May 2010 ‎PHP - Link clicks counter (hist) ‎[4,352 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes if you have a download link or a link to your friends site, you might want to record how many times those links are being clicked on. Below is a simple link counter which require...)
  • 06:22, 5 May 2010 ‎PHP - Line Graph Library (hist) ‎[5,870 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes you may want to make a line graph and it can be a devil to make and that is why I have made a library specifically for doing line graphs. The library is as follows: <code php> <?...)
  • 06:21, 5 May 2010 ‎PHP - Language Translator (hist) ‎[3,668 bytes] ‎Cwarn23 (Talk | contribs) (New page: <pre style='background-color:#FFCCCC; color: #000000; font-weight: bold; font-size: 17px;'>YOU MAY USE THIS FUNCTION AT YOUR OWN RISK. ALTHOUGH IT WORKS I AM NOT RESPONSIBLE OF ANY LEGAL ...)
  • 06:20, 5 May 2010 ‎PHP - IP Page Blocker (hist) ‎[1,305 bytes] ‎Cwarn23 (Talk | contribs) (New page: When making a website, depending on what content you have, you may not want some people to view some of your webpages. If you have those peoples ip addresses then you can put a list of ip ...)
  • 06:18, 5 May 2010 ‎PHP - Get Links From URL (hist) ‎[747 bytes] ‎Cwarn23 (Talk | contribs) (New page: When creating a website or even a bot to scan the website, you may face a situation where you need to get all the links from a webpage well this function does just that. The function shown...)
  • 06:17, 5 May 2010 ‎PHP - Hex color to RGB color converter (hist) ‎[4,268 bytes] ‎Cwarn23 (Talk | contribs) (New page: Turning a hex color (#FFFFFF) to a RGB color (255,255,255) is a simple process of letter to number conversion then multiplication and addition at the end. So below is a function that will ...)
  • 06:15, 5 May 2010 ‎PHP - Future Date In X Days (hist) ‎[1,080 bytes] ‎Cwarn23 (Talk | contribs) (New page: In rare cases you might want to display what the date will be in lets say 193 days 2 months. To do this, a function has been created so that you can just enter that data and it will be dis...)
  • 06:13, 5 May 2010 ‎PHP - Filter Nasty Words (hist) ‎[1,581 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes when creating blogs or online communities, you will need to add a word filter to filter nasty words that you don't want search engines indexing. It is a simple process to filter ...)
  • 06:12, 5 May 2010 ‎PHP - Encryption and Decryption (hist) ‎[2,135 bytes] ‎Cwarn23 (Talk | contribs) (New page: Encryption and decryption can be useful for if you want to be able to retrieve passwords or securely transfer data. However usually the best way of storing passwords is using a hash inside...)
  • 06:10, 5 May 2010 ‎PHP - Email Form (hist) ‎[2,256 bytes] ‎Cwarn23 (Talk | contribs) (New page: As an owner of a website, one of the things that you really need is feedback. To find out what your visitors think and what needs to change to suite your visitor/customer needs. The easies...)
  • 06:09, 5 May 2010 ‎PHP - Easy Database Manager (hist) ‎[2,714 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes you may have a database but want a form generated so that every entry in the database will appear in one large form. Well below is a script which will allow you to update all the...)
  • 06:08, 5 May 2010 ‎PHP - Currency Converter (hist) ‎[2,495 bytes] ‎Cwarn23 (Talk | contribs) (New page: <pre style='background-color:#FFCCCC; color: #000000; font-weight: bold; font-size: 17px;'>YOU MAY USE THIS FUNCTION AT YOUR OWN RISK. ALTHOUGH IT WORKS I AM NOT RESPONSIBLE OF ANY LEGAL ...)
  • 06:07, 5 May 2010 ‎PHP - Countdown to date (hist) ‎[1,820 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes on a website you may want to have displayed on a page the number of days untill an event. But it can also be hard work updating this number every day unless you write a PHP scrip...)
  • 06:05, 5 May 2010 ‎PHP - Comments box (hist) ‎[9,215 bytes] ‎Cwarn23 (Talk | contribs) (New page: On some of your basic webpages you may like to allow visitors to leave comments behind for others to view. This can be done with a comments box. A comments box is simple to embed and will ...)
  • 06:04, 5 May 2010 ‎PHP - Check if string is a formula (hist) ‎[1,189 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes when storing mathematical data, you may need to sort the formulas from the strings. This function will allow you to add the formula into the function and the function will return...)
  • 05:48, 5 May 2010 ‎PHP - Calculate pi (hist) ‎[2,075 bytes] ‎Cwarn23 (Talk | contribs) (New page: Pi is a never ending number unless you use an inaccurate formula. Below is an example of a php script to calculate pi using Vieta's Pi Formula. To use this script, it will take at least 3 ...)
  • 05:46, 5 May 2010 ‎PHP - Better hash functions (hist) ‎[6,197 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes you might wonder what is the best hash function. Guess what, most of them can be cracked by a reversed lookup (with the exception of whirlpool). Especially with the 2011 IBM supe...)
  • 05:44, 5 May 2010 ‎PHP - Add commas to number (hist) ‎[915 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes you may want to add commas to a number so instead of a number displaying as 10000 it would display as 10,000. This can be usefull if you are dealing with huge numbers that are un...)
  • 05:37, 5 May 2010 ‎PHP - Installing Image Magick on Windows XP with PHP 5.2.X (hist) ‎[2,077 bytes] ‎Cwarn23 (Talk | contribs) (New page: In This tutorial you will learn how to install ImageMagick on Windows XP with PHP 5.2. To start of with open [http://www.imagemagick.org/script/binary-releases.php#windows this page] to ge...)
  • 05:36, 5 May 2010 ‎PHP - Pagination made easy (hist) ‎[4,573 bytes] ‎Cwarn23 (Talk | contribs) (New page: When displaying pages, often pagination will need to be used. A lot of people may ask, what is pagination and why would I need to use it. Well the answer is simple and clear. Pagination is...)
  • 05:35, 5 May 2010 ‎PHP - Cookies Tutorial (hist) ‎[3,342 bytes] ‎Cwarn23 (Talk | contribs) (New page: Cookies are a very basic part of PHP and are required mainly for passing data between pages. In this tutorial you will learn how to use cookies and best practices. As a note you may be int...)
  • 05:33, 5 May 2010 ‎PHP - Using Sessions (hist) ‎[2,681 bytes] ‎Cwarn23 (Talk | contribs) (New page: Sometimes when designing a website you would like pages to swap variables without the user clicking a link or posting a form. Alternatively cookies could be used for the same thing but mor...)
  • 05:31, 5 May 2010 ‎PHP - Using Arrays (hist) ‎[15,845 bytes] ‎Cwarn23 (Talk | contribs) (New page: Arrays are an important part of php as they allow you to loop through a specific group of data and collect data from loops. In the below chapters you will learn how to make, modify and del...)
  • 05:30, 5 May 2010 ‎PHP - Making a basic blog (hist) ‎[9,203 bytes] ‎Cwarn23 (Talk | contribs) (New page: In this tutorial you will learn the basics to creating a blog and how the required code works. So first is first, lets observe the complete result. <code php><head><title>My Blog</title> <...)
  • 05:28, 5 May 2010 ‎PHP - Using the include and require functions (hist) ‎[2,105 bytes] ‎Cwarn23 (Talk | contribs) (New page: == Comparing the functions == The require() and include() functions are almost identical in every way except for how they handle errors. If the included function includes a file that does ...)
  • 05:28, 5 May 2010 ‎PHP - regex/preg syntax (hist) ‎[12,880 bytes] ‎Cwarn23 (Talk | contribs) (New page: '''Introduction:'''<br> In case you haven't heard of regex before or its related functions, this introduction shall guide you through. Regex is like a language to match and identify string...)
  • 05:27, 5 May 2010 ‎PHP - The Mysql stuff (hist) ‎[16,781 bytes] ‎Cwarn23 (Talk | contribs) (New page: == Introduction == Mysql is a widely popular database storage solution used on many websites as it is a easy and normally reliable way to store the data on a server. When comparing mysql t...)
  • 05:24, 5 May 2010 ‎PHP - Making PHP loop in circles (hist) ‎[3,936 bytes] ‎Cwarn23 (Talk | contribs) (New page: In this tutorial you will learn the loopedy loop loop syntax as I call it. Basically it makes php repeat some code with a few variables changed each time making it redo simular things. At ...)
  • 05:23, 5 May 2010 ‎PHP - Understanding Errors (hist) ‎[8,955 bytes] ‎Cwarn23 (Talk | contribs) (New page: == T_STRING + T_PRINT + T_IF + T_VARIABLE + T_ECHO errors == All T_ errors are normally due to a missing return symbol. This is a very common error for many forgetful programmers since onl...)
  • 05:22, 5 May 2010 ‎PHP - Your First PHP Script (hist) ‎[3,970 bytes] ‎Cwarn23 (Talk | contribs) (New page: PHP is a relatively simple language to learn. It is based on pre defined functions which can lead to great results. But first is first. Just like every other language, the "hello world" sc...)
  • 05:21, 5 May 2010 ‎PHP (hist) ‎[3,004 bytes] ‎Cwarn23 (Talk | contribs) (New page: PHP is a function based language used to compile server side code and output into HTML, Javascript and Cascading Style Sheet scripts. When using php, you can only making things happen duri...)
  • 13:31, 4 May 2010 ‎HTML - The head section (hist) ‎[775 bytes] ‎Cwarn23 (Talk | contribs) (New page: The HTML head section is generally surrounded by the <head></head> tags. This section is the header of the document which gives the page a name, tells search engines what the keywords are ...)
  • 13:29, 4 May 2010 ‎HTML - Basic tags and codes (hist) ‎[8,109 bytes] ‎Cwarn23 (Talk | contribs) (New page: == &lt;body&gt; Tag == The body tag is one of the most simplest and common tags used in html. Below is a table showing what methods may be placed into the body tag. <table border=1 cellpad...)
  • 13:28, 4 May 2010 ‎HTML - Color Chart Page 3 (hist) ‎[41,013 bytes] ‎Cwarn23 (Talk | contribs) (New page: <table border=0 cellpadding=1 cellspacing=0 style="font-weight: bold;"><tr height=25 style="font-weight: bold;"><tr height=25 style="font-weight: bold;"><td bgcolor="BB7700">BB7700</td><td...)
  • 13:26, 4 May 2010 ‎HTML - Color Chart Page 2 (hist) ‎[42,163 bytes] ‎Cwarn23 (Talk | contribs) (New page: '''HTML Color Codes Continued''' <table border=0 cellpadding=1 cellspacing=0 style="font-weight: bold;"><tr height=25 style="font-weight: bold;"><tr height=25 style="font-weight: bold;"><t...)
(Latest | Earliest) View (newer 50) () (20 | 50 | 100 | 250 | 500)
Views
Personal tools
languages
page stats