Showing posts with label Hyperlink Selector in PHP. Show all posts
Showing posts with label Hyperlink Selector in PHP. Show all posts

Sunday, January 27, 2019

Hyperlink Selector in PHP

A very simple program that I wrote to fix the code of my client in PHP to use a hyperlink to pass a value from one page to another page using HTML and PHP. I hope you will find my work useful. Thank you.

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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com




Sample Program Output


Program Listing

index.php

<html>
<title>
Hyperlink pass a value in PHP to another Page
</title>
<style>
body {
font-weight: bold;
font-family: arial;
    font-size:25px;

}
</style>
<body>
<br>
<h2> Hyperlink Selector in PHP </h2>
<br>
<a href="demo.php?data=Hamburger&data1=50"
title="Click here to choose Hamburger">
Hamburger
</a> <br><br>
&nbsp;&nbsp;PHP 50
<br><br>
<a href="demo.php?data=French Fries&data1=35"
title="Click here to choose French Fries">
French Fries
</a> <br><br>
&nbsp;&nbsp;PHP 35
<br><br>
<a href="demo.php?data=Spaghetti&data1=70"
title="Click here to choose Spaghetti">
Spaghetti
</a> <br><br>
&nbsp;&nbsp;PHP 70

</body>
</html>


demo.php

<html>
<title>
Hyperlink pass a value in PHP to another Page
</title>
<style>
body {
font-weight: bold;
font-family: arial;
    font-size:25px;

}
</style>
<body>
<br>
<h2> Selected Meal </h2>
<br>

<?php
    if(isset($_GET["data"]) && isset($_GET["data1"]))
    {
        $data = $_GET["data"];
        $data1 = $_GET["data1"];
    }

    echo "Meal  : ".$data;
echo "<br><br>";
    echo" Price : ".$data1;
?>

</html>