Skip to content

Instantly share code, notes, and snippets.

<?php
function greet($name) {
echo "Hello, " . $name . "!";
}
greet("John"); // Output: Hello, John!
?>
@SitesByYogi
SitesByYogi / form.html
Last active June 21, 2023 22:28
basic php form with HTML markup
<!-- HTML form -->
<form method="POST" action="process.php">
<input type="text" name="name" placeholder="Your name">
<input type="submit" value="Submit">
</form>
@SitesByYogi
SitesByYogi / connect.php
Created June 21, 2023 22:32
PHP database interaction
<?php
// Connect to the database
$dsn = "mysql:host=localhost;dbname=mydatabase";
$username = "root";
$password = "password";
try {
$db = new PDO($dsn, $username, $password);
} catch (PDOException $e) {
echo "Connection failed: " . $e->getMessage();
@SitesByYogi
SitesByYogi / doc.html
Created June 22, 2023 00:20
An HTML document consists of several elements that define the structure and content of a web page. Here's a basic structure for an HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Your Title</title>
</head>
<body>
<!-- Your content goes here -->
</body>
</html>
@SitesByYogi
SitesByYogi / headings.html
Created June 22, 2023 00:24
HTML heading tags
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<!-- And so on... -->
@SitesByYogi
SitesByYogi / paragraph.html
Created June 22, 2023 00:28
HTML Paragraph Tag
<p>This is a paragraph.</p>
@SitesByYogi
SitesByYogi / link.html
Created June 22, 2023 00:31
HTML Link Tag
@SitesByYogi
SitesByYogi / img.html
Created June 22, 2023 00:33
HTML Image tag
<img src="image.jpg" alt="Description of the image">
@SitesByYogi
SitesByYogi / list.html
Created June 22, 2023 00:34
HTML List Tag
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
@SitesByYogi
SitesByYogi / inline-css.html
Created June 22, 2023 00:39
CSS inline CSS
<p style="color: blue;">This is a blue paragraph.</p>