PHP Programmer needed to install a script the script i have sends data to my website in the php form Now what i need it to do is send the data to users profile activity feed all the data is going to the php. what the script does its for a virtual game when a users checks in at a location the data is send tot he site and will post to there feed like fb has john doe checked in at club rose the script from the game to the site is done need to hook the data to the profile feed the site is social engine based some of the script is this Owner Name: <?php echo $_POST["owName"] ?> \n Owner ID: <?php echo $_POST["owID"] ?> \n Device Description: <?php echo $_POST["objDesc"] ?> \n any help here
okay..i am bit confused on what you need..but from what i grab..when someone clicks on some link..you already have a script that posts back to your site..however you want that that data should be posted as well to FB? please pm me with clear explanation..and i will get it done. Thanks
You forgot the ";" Owner Name: <?php echo $_POST["owName"]; ?> \n Owner ID: <?php echo $_POST["owID"]; ?> \n Device Description: <?php echo $_POST["objDesc"]; ?> \n and also, try : Owner Name: <?php echo $_POST["owName"]. "<br/>"; ?> Owner ID: <?php echo $_POST["owID"]. "<br/>"; ?> Device Description: <?php echo $_POST["objDesc"]. "<br/>"; ?>
bud750 this is not the right way to do First store the value in session and display the site So the details will be featured all over your website untill client logout/signout If you need help PM