Recent Posts

Pages: 1 2 3 [4] 5
31
Requests / Re: Prompt box
« Last post by Connor on April 04, 2011, 09:55:58 pm »
<html>
<body>
<script type="text/javascript">
var name = prompt("What is your name?", "Type your name here");
alert("Hello,  "+name)
</script>
</body>
</html>
32
Advertise a company / Advertisement Rules (company, businesses)
« Last post by Connor on April 04, 2011, 09:31:07 pm »
YOU MUST HAVE PERMISSION FROM EITHER ME, OR AN ADMINISTRATOR TO START AN ADVERTISMENT, THOSE WHO DO NOT, WILL HAVE THERE THREADS REMOVED AND WILL BE PUNISHED.
33
Spam / Spam Rules
« Last post by Connor on April 04, 2011, 09:28:19 pm »
No hacking content.
No pornographic content.
No flaming.
No trolling.
34
Java / About Java
« Last post by Connor on April 04, 2011, 09:12:45 pm »
Java is a programming language originally developed by James Gosling at Sun Microsystems (which is now a subsidiary of Oracle Corporation) and released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. Java applications are typically compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture. Java is a general-purpose, concurrent, class-based, object-oriented language that is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere". Java is currently one of the most popular programming languages in use, and is widely used from application software to web applications.[9][10]
35
Perl / About Perl
« Last post by Connor on April 04, 2011, 09:11:22 pm »
Perl is a high-level, general-purpose, interpreted, dynamic programming language. Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier.[3] Since then, it has undergone many changes and revisions and become widely popular amongst programmers. Larry Wall continues to oversee development of the core language, and its upcoming version, Perl 6. Perl borrows features from other programming languages including C, shell scripting (sh), AWK, and sed.[4] The language provides powerful text processing facilities without the arbitrary data length limits of many contemporary Unix tools,[5] facilitating easy manipulation of text files. Perl gained widespread popularity in the late 1990s as a CGI scripting language, in part due to its parsing abilities.[6]
In addition to CGI, Perl is used for graphics programming, system administration, network programming, finance, bioinformatics, and other applications. Perl is nicknamed "the Swiss Army chainsaw of programming languages" due to its flexibility and power.[7] It is also referred to as the "duct tape that holds the Internet together", in reference to its ubiquity and perceived inelegance.[8]
36
Python / About Python
« Last post by Connor on April 04, 2011, 09:08:10 pm »
Python is an interpreted, general-purpose high-level programming language[5] whose design philosophy emphasizes code readability.[6] Python aims to combine "remarkable power with very clear syntax",[7] and its standard library is large and comprehensive. Its use of indentation for block delimiters is unique among popular programming languages.
Python supports multiple programming paradigms, primarily but not limited to object-oriented, imperative and, to a lesser extent, functional programming styles. It features a fully dynamic type system and automatic memory management, similar to that of Scheme, Ruby, Perl, and Tcl. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts.
The reference implementation of Python (CPython) is free and open source software and has a community-based development model, as do all or nearly all of its alternative implementations. CPython is managed by the non-profit Python Software Foundation.
Python interpreters are available for many operating systems, and Python programs can be packaged into stand-alone executable code for many systems using various tools.
37
PHP / About PHP
« Last post by Connor on April 04, 2011, 09:05:52 pm »
PHP is a general-purpose scripting language originally designed for web development to produce dynamic web pages. For this purpose, PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document. It also has evolved to include a command-line interface capability and can be used in standalone graphical applications. PHP can be deployed on most web servers and as a standalone interpreter, on almost every operating system and platform free of charge. PHP is installed on more than 20 million websites and 1 million web servers.
38
PHP / Echo
« Last post by Connor on April 03, 2011, 10:26:55 pm »
Code: [Select]
<?phpecho 'This is echo';?>
39
Requests / Prompt box
« Last post by liam on April 01, 2011, 09:49:45 am »
Yeah how do you use a prompt box so when it asks for my name and when i type it says hello "Name"
40
JavaScript / Alerts with JavaScript & HTML
« Last post by Connor on April 01, 2011, 09:49:00 am »
Code: [Select]

<script type="text/javascript">

function doRedirect()
{
alert("Alert here!");
}

</script>


If you want it in a .html file, and you want it to pop up straight away when the page is opened, add this attribute to your body tag.

Code: [Select]
<body onLoad="doRedirect()">
Pages: 1 2 3 [4] 5