Search

Sunday, July 31, 2016

Php1-Pass a variable from one page to other webpage

How to pass a variable from one webpage to another?

Its the simple command to be given in both the pages:


Mypage.php

<?php
session start();
row=1;
?>

Mypage1.php

<?php
session start ();
echo row;
?>




No comments:

Post a Comment