Learn Computer Programming Free from our source codes in my website.
Sponsored Link Please Support
https://www.techseries.dev/a/27966/qWm8FwLb
https://www.techseries.dev/a/19181/qWm8FwLb
My Personal Website is http://www.jakerpomperada.com
Email me at jakerpomperada@gmail.com and jakerpomperada@yahoo.com
Tuesday, November 17, 2020
Perfect Number in PHP
In this tutorial, I will show you how to write a program to ask the user to give a number and then the program will check if the given number is a perfect number or not using PHP programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
index.php
<html>
<head>
<title>Perfect Number in PHP </title>
</head>
<body>
<style type="text/css">
body {
font-family: arial;
size: 12px;
};
</style>
<?php
$num_values = $_POST['num_val'];
function CheckPerfect($num) {
$i = 1;
$total = 0;
for($i=1; $i<$num; $i++)
{
if($num % $i == 0)
$total += $i;
}
if($total == $num)
$message = "$num is a perfect number.";
else
$message = "$num is not a perfect number.";
return $message;
}
if(isset($_POST['submit'])) {
$results= CheckPerfect($num_values);
}
if(isset($_POST['clear'])) {
$num_values = "";
$results = "";
}
?>
<h2> Perfect Number in PHP </h2>
<p> Mr. Jake Rodriguez Pomperada,MAED-IT, MIT </p>
<form method="post">
<p>Give a Number <input
type="numeric" name="num_val"
value="<?php echo $num_values; ?>" autofocus required /></p>
<input type="submit" name="submit"
title="Click here to compute the cube root. "
value="Submit" />
<input type="submit" name="clear"
title="Click here to clear the textbox."
value="Clear" />
</form>
<?php
echo $results;
?>
</body>
</html>
Positive and Negative Number in PHP
In this tutorial, I will show you how to write a program to ask the user to give a number and then the program will check if the given number in positive, zero, or negative number using PHP programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button,
SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
index.php
<html>
<head>
<title>Positive and Negative Number in PHP </title>
</head>
<body>
<style type="text/css">
body {
font-family: arial;
size: 12px;
};
</style>
<?php
$num_values = $_POST['num_val'];
function CheckNumber($x) {
if ($x > 0)
{$message = "The given number
$x is a Positive number.";}
if ($x == 0)
{$message = "The given number
$x is Zero.";}
if ($x < 0)
{$message = "The given number
$x is a Negative number.";}
return $message;
}
if(isset($_POST['submit'])) {
$results= CheckNumber($num_values);
}
if(isset($_POST['clear'])) {
$num_values = "";
$results = "";
}
?>
<h2> Positive and Negative Number in PHP </h2>
<p> Mr. Jake Rodriguez Pomperada,MAED-IT, MIT </p>
<form method="post">
<p>Give a Number <input
type="numeric" name="num_val"
value="<?php echo $num_values; ?>" autofocus required /></p>
<input type="submit" name="submit"
title="Click here to compute the cube root. "
value="Submit" />
<input type="submit" name="clear"
title="Click here to clear the textbox."
value="Clear" />
</form>
<?php
echo $results;
?>
</body>
</html>
Cube Root of a Number in PHP
In this tutorial, I will show you how to write a program to ask the user to give a number and then the program will compute the cube root value of the given number using PHP programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
index.php
<html>
<head>
<title> Cube Root of a Number in PHP </title>
</head>
<body>
<style type="text/css">
body {
font-family: arial;
size: 12px;
};
</style>
<?php
$num_values = $_POST['num_val'];
if(isset($_POST['submit'])) {
$compute = pow($num_values ,1/3);
$results = "<h4>The Number of Digits : $compute
</h4>";
}
if(isset($_POST['clear'])) {
$num_values = "";
$results = "";
}
?>
<h2> Cube Root of a Number in PHP </h2>
<p> Mr. Jake Rodriguez Pomperada,MAED-IT, MIT </p>
<form method="post">
<p>Give a Number <input
type="numeric" name="num_val"
value="<?php echo $num_values; ?>" autofocus required /></p>
<input type="submit" name="submit"
title="Click here to compute the cube root. "
value="Submit" />
<input type="submit" name="clear"
title="Click here to clear the textbox."
value="Clear" />
</form>
<?php
echo $results;
?>
</body>
</html>
Monday, November 16, 2020
Addition of Six Numbers in PHP
In this tutorial, I will show you how a program using PHP to ask the user to give six numbers and then
the program will compute the sum of six numbers given by the user.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please LIKE, SHARE, and SUBSCRIBE to my channel.
Thank you very much for your support.
Time Difference in VB.NET
In this tutorial, I will show you how to write a program to ask the user to give a two time hours and then the program will compute the difference of the two time hours in Microsoft Visual Basic NET programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Inches to Centimeter in C++
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button,
SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Text Color and Delay in C++ Using Dev C++
I wrote this program to demonstrate how to use text color and delay in C++ using Dev C++ integrated development environment.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
Thank you very much.
Program Listing
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
HANDLE colors=GetStdHandle(STD_OUTPUT_HANDLE);
string text;
int a=0;
text = "Master in Information Technology";
cout << "\n\n";
cout << "\tText Color and Delay in C++ Using Dev C++";
cout <<"\n\n";
cout <<"\t";
for(int i=0;i<text.length(); i++)
{
a>9 ? a=0 : a++;
if(a==0)
{
SetConsoleTextAttribute(colors,1);
}else
{
SetConsoleTextAttribute(colors,a);
}
cout<<text.at(i);
Sleep(100);
}
cout << "\n\n";
cout << "\tEnd of Program";
cout << "\n\n";
}
Sunday, November 15, 2020
Count Digits in PHP
In this tutorial I will wrote a program that uses PHP programming language to ask the user to give a number and then the program will count the number of digits in the given number.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
Thank you very much.
Saturday, November 14, 2020
HTML Forms Input and Display in PHP
In this tutorial I will show you how to create and use HTML forms with PHP programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
index.php
<html>
<head>
<title>HTML Forms Input and Display in PHP</title>
</head>
<body>
<style type="text/css">
body {
font-family: arial;
size: 12px;
};
</style>
<?php
$display="";
$firstname = $_POST['firstname'];
$middlename = $_POST['middlename'];
$lastname = $_POST['lastname'];
if(isset($_POST['submit'])) {
$display .= "<h2> Display Results </h2>";
$display .= "First Name : " .
strtoupper($firstname) ."<br/>";
$display .= "Middle Name : " .
strtoupper($middlename)."<br/>";
$display .= "Last Name : " .
strtoupper($lastname)."<br />";
}
if (isset($_POST['clear'])) {
$firstname ="";
$middlename ="";
$lastname ="";
$display ="";
}
?>
<h2> HTML Forms Input and Display in PHP </h2>
<form method="post">
<p>First Name: <input type="text" name="firstname"
value="<?php echo $firstname; ?>" autofocus
></p>
<p>Middle Name: <input type="text" name="middlename"
value="<?php echo $middlename; ?>"></p>
<p>Last Name: <input type="text" name="lastname"
value="<?php echo $lastname; ?>"></p>
<input type="submit" name="submit" value="Submit" />
<input type="submit" name="clear" value="Clear" />
</form>
<?php
echo $display;
?>
</body>
</html>
Friday, November 13, 2020
Average of Three Numbers in PHP
I wrote this program to compute the average value of three numbers using PHP programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
<?php
/* average_three.php
Jake Rodriguez Pomperada, MAED-IT, MIT
www.jakerpomperada.com / www.jakerpomperada.blogspot.com
jakerpomperada@gmail.com
Bacolod City, Negros Occidental, Philippines
*/
$val1 = 20;
$val2 = 30;
$val3 = 40;
$num_of_values = 3;
$total_sum = ($val1 + $val2 + $val3);
$average= ($total_sum / $num_of_values);
echo "<h2>Average of Three Numbers in PHP </h2>";
echo "<h2>The given values are $val1, $val2, and $val3.</h2>";
echo "<h2>The average value is $average.</h2>";
?>



















