Pascal, C,C++, a little HTML and Java...
I think I may be doing C# sometime in the future...
What programming languages do you know?
-
Happy Mask Salesman -
July 18, 2007 at 1:51 AM
-
-
Java is a pain in the ass, along with CSS, HTML was a piece of cake though, Still wanna learn PERL ,Python, Crytography, C,C++, and some others.
-
-
Java is a little nice imo.lol...
C and C++ start of easy....but it gets difficult fast :S because of the syntax...
Pascal, though VERY old..is actually a very nice language
I learned prgramming using this...You have to do everything yourself, but its definitely more english like than C and C++..HTML was a breeze
-
I know Lingo, It's commonly used for Online Games.
-
-
(I swear, I posted in here already. >_<)
I know basic HTML.
<b>
<u>
<i>
<br>
<color=>
I know several others, but it's to late, I'm to tired to think of 'em. XD -
I know some C and a little bit of C++, I'm going to learn some more of it though.
-
-
I Know Advanced HTML/XML, CSS and I am learning PHP and SQL at the moment.
-
I know very little of HTML and Javascript:tongue_smilie:
-
-
I have quite an expanded knowledge of CSS and HTML. I know a small bit of C++, and some Javascript.
-
Very little oh HTML. I tried to learn so I can do a few things, but it waas disastrous.
-
-
^ It takes quite a bit of time to learn a programming language. It took me a while to learn CSS. In my opinion, HTML is actually the easier one, but it's different for others. The codes and where to place everything can get confusing.
-
I know C++, Java, CSS, HTML, and XML. Actualy, I only know a little of C++, but all og the others I understand very well.
-
-
Well PHP is my favorite language, you can do some really cool stuff with it.
Code
Display More<? $value1 = $_POST['value1']; $value2 = $_POST['value2']; if(!$value1=="") { if(!$value2=="") { $answer = ($value1+$value2); }} if($answer=="") { echo('<form method="post" action="' . $_SERVER['PHP_SELF'] . '">'); echo('<p>First Number: <br />'); echo('<input type="text" name="value1" /></p>'); echo('<p>Second Number: <br />'); echo('<input type="text" name="value2" /></p>'); echo('<input type="submit" name="" value="Calculate!" />'); echo('</form>'); } else { echo($answer); } ?>
This is a basic addition calculator (You add 2 values together), which I just coded in this reply box
Anyway, PHP allows you to have dynamic content on a webpage instead of just static content, you can have
HTML
Display More<? $page = $_GET['page']; include('content.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>Test Site!</title> </head> <body> <? if($page=="") {echo('Content displayed on main page'); } else { echo($content); } ?> </body> </html>
Which means that could simply be your index, all your content could be defined in content.php
Code
Display More<? // TEST PAGE if($page=="test") { $content = "This is the Test Page!"; } // ABOUT PAGE if($page=="about") { $content = "About Page MAUAHAH!"; } ?> and so on...
Meaning on index.php you place index.php?page=test in the URL and it will load what you defined for Test, "This is the Test Page!" In the page.
-
Kyde
May 8, 2019 at 3:30 PM Moved the thread from forum Technology to forum General Discussion. -
Copyright © 2000-2024, Zelda Cavern.
All Rights Reserved.