Jump to content

Help with echo on in logout.php


lew14

Recommended Posts

I am trying to get a my thanks.php and logout.php to look like the rest of my script.  It has echo and I do not know anything about it. 

 

Here is my thanks.php:

<?php

  include "./header.php";

  include "./config.php";

 

echo "<br><br><b>Thanks for making the payment , we verifies each payment manually . We will get back to you very soon after verifing your payment.</b><br><br>";

 

  include "./footer.php";

?>

 

Here is my logout.php:

<?php

  include "./header.php";

  include "./config.php";

 

session_start();

session_destroy();

echo "You are currently logged out. To login in again <a href=./admin.php target=_blank>click here</a>.";

 

  include "./footer.php";

?>

 

 

Here is the design I am trying to add:

            <table class=testamonials width="95%" border="0" cellspacing="20" cellpadding="0" bgcolor="#FFFEEA" align="center">

              <tr>

                <td>

<br>

Put text from each .php here

<br>

                </td>

              </tr>

            </table>

 

Once the code is created I need it put back where the text from above is located or know how to add it if the above code does not work.

 

Link to comment
https://forums.phpfreaks.com/topic/222176-help-with-echo-on-in-logoutphp/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.