RON_ron Posted October 1, 2009 Share Posted October 1, 2009 How to write a server side PHP script to match the RECEIVED TEXT ($dataForTxtbox_1) with a Name and pass on the name instead of the RECEIVED TEXT? Link to comment https://forums.phpfreaks.com/topic/176146-get-match-send/ Share on other sites More sharing options...
trq Posted October 1, 2009 Share Posted October 1, 2009 Your questions (this isn't the first) needs rephrasing. Link to comment https://forums.phpfreaks.com/topic/176146-get-match-send/#findComment-928230 Share on other sites More sharing options...
redarrow Posted October 1, 2009 Share Posted October 1, 2009 Is this a trick question. Use session's. Link to comment https://forums.phpfreaks.com/topic/176146-get-match-send/#findComment-928231 Share on other sites More sharing options...
RON_ron Posted October 1, 2009 Author Share Posted October 1, 2009 How to write a server side PHP script that would extract an ID from a querystring and make it match to an ID on the PHP page, then pass that ID - email address back to my Flash file. Hope it's clear. Link to comment https://forums.phpfreaks.com/topic/176146-get-match-send/#findComment-928240 Share on other sites More sharing options...
redarrow Posted October 1, 2009 Share Posted October 1, 2009 $_GET[''] function you want...... this will $_GET['any_variable'] set in a url..... tutorial. http://www.w3schools.com/PHP/php_get.asp let say url is me.com?id=1234567 echo $_GET['id']; // 1234567 adding info to the url this way... short one. me.com?cmd=$variable long one me.com?cmd=$variable&cmda=$varable2 even longer one me.com?cmd=$variable&cmda=$varable2&cmdb=$varable3 Link to comment https://forums.phpfreaks.com/topic/176146-get-match-send/#findComment-928243 Share on other sites More sharing options...
trq Posted October 1, 2009 Share Posted October 1, 2009 How to write a server side PHP script that would extract an ID from a querystring and make it match to an ID on the PHP page, then pass that ID - email address back to my Flash file. Hope it's clear. You asked this question yesterday in a round about way. I showed you how to get information from the $_GET array and asked you to show us what this page looks like where we match the ID. You are yet to provide this information. Link to comment https://forums.phpfreaks.com/topic/176146-get-match-send/#findComment-928245 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.