Skip to content

Commit 70b1e96

Browse files
authored
Sourcebase_ScriptStarter_V1.09.php
Version 2 of the SourceBase PHP Web template. Version number is quintupled to match the HTML version.
1 parent 101be0d commit 70b1e96

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
// PHP section
3+
// "Echo"
4+
echo ("Hello World"); // Output: Hello World
5+
/* Or
6+
* "Print"
7+
*/
8+
print ("Hello World"); // Output: Hello World
9+
// Variable list
10+
$piSimple = "3.14";
11+
$HelloWorldStr = "Hello World";
12+
$HelloworldStr = "Hello world";
13+
$Int2__16 = "65536"; // My #1 memorized power of 2
14+
// End of variable list
15+
// Var list
16+
var x = 0; // X Coordinate
17+
var y = 0; // Y Coordinate
18+
var z = 0; // Z Coordinate
19+
var a = 0; // A Coordinate [4D MODE ONLY]
20+
// End ov Var list
21+
// Int list
22+
int testInt1 = "101";
23+
// End of int list
24+
// float list
25+
float decimal1 = "1.01";
26+
// End of float list
27+
// End of PHP section
28+
?>

0 commit comments

Comments
 (0)