John 1:9

The true light that gives light to everyone was coming into the world.



HEADER1 CODE FOLLOWS

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>PHP Example</title>
    <link rel="stylesheet" href="../css/styles.css" media="screen">
</head>

<body>

    <div id="page">         <!-- start of page -->

        <div class="navcontainer">
            <ul class="navlist">
                <li><a href="func.php">Back</a></li>
            </ul>
        </div>

        <div id="content">         <!-- start of content -->

 

CODE FOLLOWS

<?php

    
include('includes/header1.php');

    
error_reporting(E_ALL);

    
// create an array
    
$verse = array();

    
// populate the array
    
$verse[1] = "In the beginning was the Word, and the Word was with God, and the Word was God";
    
$verse[2] = "He was with God in the beginning.";
    
$verse[3] = "Through him all things were made; without him nothing was made that has been made.";
    
$verse[4] = "In him was life, and that life was the light of all mankind.";
    
$verse[5] = "The light shines in the darkness,and the darkness has not overcome it.";
    
$verse[6] = "There was a man sent from God whose name was John.";
    
$verse[7] = "He came as a witness to testify concerning that light, so that through him all might believe.";
    
$verse[8] = "He himself was not the light; he came only as a witness to the light.";
    
$verse[9] = "The true light that gives light to everyone was coming into the world.";
    
$verse[10] = "He was in the world, and though the world was made through him, the world did not recognize him.";

    
// get a random number from 1 to 10
    
$i rand(110);

    
// print John and verse
    
echo("<h1>John 1:$i</h1>");
    echo(
"<h2>$verse[$i]</h2>");
?>

<form action="aa.php" method="POST">
    <input type="submit" name="submit" value="Submit">
</form>

<br>

<button onClick=myFunction()> This is a JavaScript Function. </button>

<?php

    
echo('<hr>HEADER1 CODE FOLLOWS<br><br>');
    
highlight_file("includes/header1.php");
    echo(
'<hr>');


    include(
'includes/footer.php');
?>