programs and code of html, Cheat Sheet of Technology

it is the code of html very very important and useful for learning and practicing

Typology: Cheat Sheet

2024/2025

Uploaded on 05/28/2026

srijal-mahat
srijal-mahat ๐Ÿ‡ณ๐Ÿ‡ต

1 document

1 / 3

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Home.php
<?php
๎˜†echo "<h1>Welcome to Home Page</h1>";
๎˜†echo "<form action='postdata.php' ๎˜†method='get'
>";
๎˜†echo "<textarea name='post'>Write
Something.....</textarea><br>";
๎˜†echo "<input type='submit' value='Post'>";
๎˜†echo "</form>";
?>
<?php
๎˜† ๎˜†$con = new mysqli("localhost", "root", "",
"facebook_db");
๎˜† ๎˜†if($con->connect_error){
๎˜† ๎˜† ๎˜† ๎˜† die("Connection Failed: " . $con-
>connect_error);
๎˜† ๎˜†}
๎˜† ๎˜† $sql = "SELECT * FROM posts";
๎˜† ๎˜† $result = $con -> query($sql);
๎˜† ๎˜† if($result->num_rows > 0){
๎˜† ๎˜† ๎˜† ๎˜† while($row = $result->fetch_assoc()){
๎˜† ๎˜† ๎˜† ๎˜† ๎˜† ๎˜† echo "<div
style='width:300px;padding:20px; margin:20px;
border:1px solid black'> ";
๎˜† ๎˜† ๎˜† ๎˜† ๎˜† ๎˜† echo "<p>" . $row["post"] . "</p>";
๎˜† ๎˜† ๎˜† ๎˜† ๎˜† ๎˜† echo "</div>";
๎˜† ๎˜† ๎˜† ๎˜† }
๎˜† ๎˜† }
pf3

Partial preview of the text

Download programs and code of html and more Cheat Sheet Technology in PDF only on Docsity!

Home.php Welcome to Home Page"; echo ""; echo ""; echo ""; echo ""; ?> connect_error){ die("Connection Failed: ". $con- >connect_error); } $sql = "SELECT * FROM posts"; $result = $con -> query($sql); if($result->num_rows > 0 ){ while($row = $result->fetch_assoc()){ echo " "; echo "

". $row["post"]. "

"; echo ""; } }

$con->close(); ?> Postdata.php connect_error){ die("Connection Failed: ". $con- >connect_error); } $sql = "INSERT INTO posts(post) VALUES ('$post')"; $result = $con -> query($sql); if($result === TRUE){ echo "Post Uploaded Successfully"; header("Location: home.php"); }else{