PHP API Linked In Twitter API,

0 Cevap php

Ben Twitter, bazı metin göndermek için kullanmak, ve içeri Bağlantılı basit bir script arıyorum

Amaç şöyle basit bir örnek PHP komut dosyası var edebilmek için:

<html>
  <head>
    <title>Twitter and Linked In API</title>
    <script type="text/javascript" src="jquery.js">
  </head>
  <body>
  <?php $dummy_txt = 'Hello world! from me'; ?>
  <div id="tweet">Tweet</div>
  <div id="sendto_li">Send to Linked In</div>
  $(body).ready(function(){
     $('#tweet').click(function(){
        //post data to server
     });
     $('#sendto_li').click(function(){
        //post data to server
     });
  });
  </body>
</html>

//Server side
<?php
  function tweet(){
  }

  function sendto_linkedin(){
  }
?>

Kabinli herkes Twitter ve LinkedIn API taşırken, sunucu tarafı işlevleri yazma yardım?

0 Cevap