-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnippets.php
More file actions
20 lines (19 loc) · 847 Bytes
/
Copy pathsnippets.php
File metadata and controls
20 lines (19 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
echo "Hello, World! <br/>";
echo "Welcome to the world of programming.<br/>";
echo "This is a simple PHP script.<br/>";
echo "You can use PHP to create dynamic web pages.<br/>";
echo "PHP is a popular server-side scripting language.<br/>";
echo "It is widely used for web development.<br/>;";
echo "PHP stands for Hypertext Preprocessor.<br/>";
echo "With PHP, you can interact with databases.<br/>";
echo "PHP is easy to learn and has a large community.<br/>";
echo "You can use PHP to build powerful web applications.<br/>";
echo "PHP is open-source and free to use.<br/>";
echo "Thank you for learning PHP!<br/>";
#echo phpinfo();
// let user choose image files
#echo '<input type="file" name="image" accept="image/*">';
#echo '<button type="submit">Upload Image</button>';
#echo "Maximum filesize: " . ini_get('upload_max_filesize');
?>