1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

PHP Programmer

Discussion in 'Programming' started by bud750, Dec 19, 2010.

  1. #1
    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
     
    bud750, Dec 19, 2010 IP
  2. brendon28

    brendon28 Peon

    Messages:
    46
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    is in this project have any deadline?
     
    brendon28, Dec 19, 2010 IP
  3. ankit_frenz

    ankit_frenz Active Member

    Messages:
    1,111
    Likes Received:
    41
    Best Answers:
    0
    Trophy Points:
    63
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    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
     
    ankit_frenz, Dec 19, 2010 IP
  4. Wav3

    Wav3 Well-Known Member

    Messages:
    247
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    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/>"; ?>
     
    Wav3, Dec 19, 2010 IP
  5. godhost

    godhost Member

    Messages:
    83
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    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
     
    godhost, Dec 21, 2010 IP