0% found this document useful (0 votes)
91 views27 pages

Q 1 Write A Simple HTML Code To Develop HTML Page

The document provides PHP code snippets to demonstrate various PHP features including: 1) Basic HTML and PHP code to display text and variables, use forms, include CSS, create functions, arrays, classes and objects. 2) PHP code to connect to a database, perform CRUD operations like insert, select, update and delete records from tables. 3) Examples of PHP control structures like if/else statements, loops, switch cases and examples of OOP concepts like inheritance, polymorphism.

Uploaded by

mkumbhcar
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
91 views27 pages

Q 1 Write A Simple HTML Code To Develop HTML Page

The document provides PHP code snippets to demonstrate various PHP features including: 1) Basic HTML and PHP code to display text and variables, use forms, include CSS, create functions, arrays, classes and objects. 2) PHP code to connect to a database, perform CRUD operations like insert, select, update and delete records from tables. 3) Examples of PHP control structures like if/else statements, loops, switch cases and examples of OOP concepts like inheritance, polymorphism.

Uploaded by

mkumbhcar
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 27

Q 1 write a simple Html code to develop HTMl page.

<!DOCTYPE html>

<html>

<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>

</html>

Q 2 write a simple Html code to use Inline CSS.

<!DOCTYPE html>

<html>

<body>

<h1 style="color:blue;">This is a Blue Heading</h1>

</body>

</html>

Q.3 write a simple Html code to use External CSS.

<!DOCTYPE html>

<html>

<head>
<link rel="stylesheet" href="Address">

</head>

<body>

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

</body>

</html>

output :

This is a heading

This is a paragraph.

Q.4 write a simple Html code to use Internal CSS.

<!DOCTYPE html>

<html>

<head>

<style>

body {background-color: powderblue;}

h1 {color: blue;}

p {color: red;}

</style>

</head>

<body>
<h1>This is a heading</h1>

<p>This is a paragraph.</p>

</body>

</html>

Output

This is a heading

This is a paragraph.

Q.4 write a simple Php Script to define variable.

<?php

$txt = "Hello world!";

$x = 5;

$y = 10.5;

?>

output

Hello world!

10.5

Q.5 write a simple code using PHP echo Statement.

<?php

echo "<h2>PHP is Fun!</h2>";


echo "Hello world!<br>";

echo "I'm about to learn PHP!<br>";

echo "This ", "string ", "was ", "made ", "with multiple parameters.";

?>

Q.6 write a Php Script for find a length of String .

<html>

<body>
<?php

echo strlen("Hello world!");

?>

</body>

</html>

output

12

Q.7 write a Php Script for find word in String .

<html>

<body>

<?php

echo str_word_count("Hello world!");

?>
</body>

</html>

output

Q.7 write a Php Script for find reverse in String .

<!DOCTYPE html>
<html>

<body>

<?php

echo strrev("Hello world!");

?>

</body>

</html>

Output

!dlrow olleH

Q.8 write a Php Script for a Specific Text Within a String.

<!DOCTYPE html>

<html>
<body>

<?php

echo strpos("Hello world!", "world");

?>

</body>

</html>

Output

Q.9 write a Php Script for define Constant.

<!DOCTYPE html>

<html>

<body>

<?php

// case-sensitive constant name

define("GREETING", "Welcome to W3Schools.com!");

echo GREETING;

?>

</body>

</html>

Q.10 Write a php Script to excutes The if Statement.


<html>

<body>

<?php

$t = date("H");

if ($t < "20") {

echo "Have a good day!";


}

?>

</body>

</html>

Q.11 Write a php Script to excutes The if...elseif....else Statement.

<html>

<body>

<?php

$t = date("H");

echo "<p>The hour (of the server) is " . $t;

echo ", and will give the following message:</p>";

if ($t < "10") {

echo "Have a good morning!";


} elseif ($t < "20") {

echo "Have a good day!";

} else {

echo "Have a good night!";

?>

</body>

</html>

Q.12 Write a php Script to excutes switch Statement.

<?php

$favcolor = "red";

switch ($favcolor) {

case "red":

echo "Your favorite color is red!";

break;

case "blue":

echo "Your favorite color is blue!";

break;

case "green":

echo "Your favorite color is green!";

break;

default:

echo "Your favorite color is neither red, blue, nor green!";

}
?>

Output

Your favorite color is red!

Q.13 Write a php Script to excutes while Loop.

<html>

<body>

<?php

$x = 1;

while($x <= 5) {

echo "The number is: $x <br>";

$x++;

?>

</body>

</html>

Output

The number is: 1

The number is: 2

The number is: 3

The number is: 4

The number is: 5


Q.13 Write a php Script to excutes do while Loop.

<html>

<body>

<?php

$x = 1;

do {
echo "The number is: $x <br>";

$x++;

} while ($x <= 5);

?>

</body>

</html>

output:

The number is: 1

The number is: 2

The number is: 3

The number is: 4

The number is: 5

Q.14 Write a php Script to excutes PHP for Loop

<!DOCTYPE html>

<html>

<body>
<?php

for ($x = 0; $x <= 10; $x++) {

echo "The number is: $x <br>";

?>

</body>

</html>
output:

The number is: 0

The number is: 1

The number is: 2

The number is: 3

The number is: 4

The number is: 5

The number is: 6

The number is: 7

The number is: 8

The number is: 9

The number is: 10

Q.15 Write a php Script to Create a User Defined Function in PHP

<html>

<body>
<?php

function writeMsg() {

echo "Hello world!";

writeMsg();

?>

</body>

</html>

Output:

Hello world!

Q.15 Write a php Script to Create PHP Function with Arguments

<html>

<body>

<?php

function familyName($fname) {

echo "$fname Refsnes.<br>";

familyName("Jani");

familyName("Hege");
familyName("Stale");

familyName("Kai Jim");

familyName("Borge");

?>

</body>

</html>

Output:
Jani Refsnes.

Hege Refsnes.

Stale Refsnes.

Kai Jim Refsnes.

Borge Refsnes.

Q.16 Write a php Script to Create Indexed Arrays.

<html>

<body>

<?php

$cars = array("Volvo", "BMW", "Toyota");

echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";

?>

</body>

</html>
output

I like Volvo, BMW and Toyota.

Q.16 Write a php Script to Create Associative Arrays.

<html>

<body>

<?php

$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");


echo "Peter is " . $age['Peter'] . " years old.";

?>

</body>

</html>

output:

Peter is 35 years old.

Q.17 Write a php Script to Create Simple form using POST.

Simple.html

<html>

<body>

<form action="welcome.php" method="post">

Name: <input type="text" name="name"><br>

E-mail: <input type="text" name="email"><br>

<input type="submit">
</form>

</body>

</html>

welcome.php

<html>

<body>

Welcome <?php echo $_POST["name"]; ?><br>

Your email address is: <?php echo $_POST["email"]; ?>

</body>

</html>

output:

Welcome mk

Your email address is: mk@yahoo.com

Q.18 Write a php Script to Create Simple form using GET.

Simple.php

<html>

<body>

<form action="welcome_get.php" method="get">

Name: <input type="text" name="name"><br>

E-mail: <input type="text" name="email"><br>

<input type="submit">
</form>

</body>

</html>

welcome_get.php

<html>

<body>

Welcome <?php echo $_GET["name"]; ?><br>

Your email address is: <?php echo $_GET["email"]; ?>

</body>

</html>

output:

Welcome mk

Your email address is: mk@yahoo.com

Q.19 Write a php Script to Create class and object .

<?PHP

class Book{

var $title="books";

var $numPages=1;

function setNumPages($numOfPages){

$numPages = $numOfPages;

}
function getNumPages(){

return $numPages;

function setTitle($Title){

$title = $Title;

function getTitle(){

return $title;

?>

output:

books

Q.19 Write a php Script to Create inheritance .


<?php

class Foo

public function printItem($string)

echo 'Foo: ' . $string . PHP_EOL;

public function printPHP()

echo 'PHP is great.' . PHP_EOL;

class Bar extends Foo

public function printItem($string)

echo 'Bar: ' . $string . PHP_EOL;

$foo = new Foo();

$bar = new Bar();

$foo->printItem('baz'); // Output: 'Foo: baz'


$foo->printPHP(); // Output: 'PHP is great'

$bar->printItem('baz'); // Output: 'Bar: baz'

$bar->printPHP(); // Output: 'PHP is great'

?>

Output: 'Foo: baz'

'PHP is great'

'Bar: baz'

'PHP is great'
Q.19 Write a php Script to Create Polymorphism.

<?php

class Shap

function draw(){}

class Circle extends Shap

function draw()

print "Circle has been drawn.</br>";

class Triangle extends Shap

function draw()
{

print "Triangle has been drawn.</br>";

class Ellipse extends Shap

function draw()

print "Ellipse has been drawn.";


}

$Val=array(2);

$Val[0]=new Circle();

$Val[1]=new Triangle();

$Val[2]=new Ellipse();

for($i=0;$i<3;$i++)

$Val[$i]->draw();

?>

output:

Circle has been drawn

Triangle has been drawn

Ellipse has been drawn


Q.19 Write a php Script to connect with Database.

<?php

$servername = "localhost";

$username = "username";

$password = "password";

// Create connection

$conn = mysqli_connect($servername, $username, $password);

// Check connection

if (!$conn) {

die("Connection failed: " . mysqli_connect_error());

echo "Connected successfully";

?>

output:

Connected successfully

Q.20 Write a php Script to insert into Database.

<?php

$servername = "localhost";

$username = "username";

$password = "password";

$dbname = "Employee";
// Create connection

$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection

if ($conn->connect_error) {

die("Connection failed: " . $conn->connect_error);

$sql = "INSERT INTO info (firstname, lastname, email)


VALUES ('John', 'Doe', 'john@example.com')";

if ($conn->query($sql) === TRUE) {

echo "New record created successfully";

} else {

echo "Error: " . $sql . "<br>" . $conn->error;

$conn->close();

?>

output:

New record created successfully"

Q.21 Write a php Script to Select from Database.

?php

$servername = "localhost";
$username = "username";

$password = "password";

$dbname = "Employee";

// Create connection

$conn = mysqli_connect($servername, $username, $password,


$dbname);

// Check connection

if (!$conn) {
die("Connection failed: " . mysqli_connect_error());

$sql = "SELECT id, firstname, lastname FROM info";

$result = mysqli_query($conn, $sql);

if (mysqli_num_rows($result) > 0) {

// output data of each row

while($row = mysqli_fetch_assoc($result)) {

echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " .
$row["lastname"]. "<br>";

} else {

echo "0 results";

mysqli_close($conn);

?>

out
joe

Q.21 Write a php Script to delete from Database.

?php

$servername = "localhost";

$username = "username";

$password = "password";

$dbname = "myDB";

// Create connection

$conn = mysqli_connect($servername, $username, $password,


$dbname);

// Check connection

if (!$conn) {

die("Connection failed: " . mysqli_connect_error());

$sql = "SELECT id, firstname, lastname FROM MyGuests";

$result = mysqli_query($conn, $sql);

if (mysqli_num_rows($result) > 0) {

// output data of each row

while($row = mysqli_fetch_assoc($result)) {

echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " .
$row["lastname"]. "<br>";

} else {
echo "0 results";

mysqli_close($conn);

?>

output:

data deleted

Q.21 Write a php Script to Create a file .

<html>

<body>

<?php

echo readfile("c:\mk.txt");

?>

</body>

Q.21 Write a php Script to Create\open\close a file .

<?php

$myfile = fopen("c:\mk.txt"", "r") or die("Unable to open file!");

echo fread($myfile,filesize("webdictionary.txt"));

fclose($myfile);

?>

</html>
Q.22 Write a php Script to check End-Of-File - feof()

<?php

$myfile = fopen("c:\mk.txt"", "r") or die("Unable to open file!");

// Output one line until end-of-file

while(!feof($myfile)) {
echo fgets($myfile) . "<br>";

fclose($myfile);

?>

Q.23 Write a php Script for Writing into File - fwrite() .

<?php

$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");

// Output one character until end-of-file

while(!feof($myfile)) {

echo fgetc($myfile);

fclose($myfile);

?>

Q.23 Write a php Script Read Single Character

<?php

$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");


$txt = "John Doe\n";

fwrite($myfile, $txt);

$txt = "Jane Doe\n";

fwrite($myfile, $txt);

fclose($myfile);

?>

You might also like