passing posted elements from html to php to another php
Moderator: General Moderators
-
vidyabhushan
- Forum Newbie
- Posts: 16
- Joined: Mon Oct 20, 2008 4:58 pm
passing posted elements from html to php to another php
how can we pass the elements which are posted to a php program from html page to another php program?
Re: passing posted elements from html to php to another php
you can use PHP sessions
Re: passing posted elements from html to php to another php
dude81 wrote:you can use PHP sessions
Code: Select all
<?php
session_start();
-
vidyabhushan
- Forum Newbie
- Posts: 16
- Joined: Mon Oct 20, 2008 4:58 pm
Re: passing posted elements from html to php to another php
Ok got it... Thank you...
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: passing posted elements from html to php to another php
If you haven't used SESSIONS before you might want to know that session_start() should be called from the beginning of the script 