Cheap Commercial Posted May 13, 2006 Share Posted May 13, 2006 hi there what is the php script for a .php that will submit all info from varible to a .txt file like[a href=\"http://www.splices.org/test/wow.php?bob=Poop\" target=\"_blank\"]http://www.splices.org/test/wow.php?bob=Poop[/a]and if i were to go to the txt it referes to i would see "poop" theredoes that help at all?? thanx for your help Quote Link to comment Share on other sites More sharing options...
AndyB Posted May 13, 2006 Share Posted May 13, 2006 It's not clear to me what you really want to do or what this has to do with a text file.If you have a link like [a href=\"http://www.splices.org/test/wow.php?bob=Poop\" target=\"_blank\"]http://www.splices.org/test/wow.php?bob=Poop[/a] and you wanted wow.php to display the value of the variable $bob, then this syntax will work in wow.php:[code]<?php// wow.php$bob = $_GET['bob']; // retrieve variable passed by URLecho $bob; // displays Poop in your example?>[/code] Quote Link to comment Share on other sites More sharing options...
Cheap Commercial Posted May 14, 2006 Author Share Posted May 14, 2006 hahaha actually i found what ai needed from a cookie stealer.. odd but i still got it thanx anywayss Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.