如何获取最后插入的ID,并使用它发送推文网址?

时间:2014-01-17 08:28:28

标签: php mysql twitter

所以这里是mysql查询的代码,它在表视频中插入id。 id的变量应该收集它,并使用接下来的几行,它应该使用此id发送我的给定URL。

我知道mysql *已经老了,如果你知道怎么做,请帮助twitter部分:)

require_once('functions/twitter.php');
    // izmanto autorizācijas funkciju
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);
$tweet->get('account/verify_credentials');
    //iegūst nosaukumu twītam
$salidzinasanai = implode(",", $register_data2);
///ziņa ko ietwītos ar linku
$message = 'http://'.$hostname.'/youtube.php?link='.$id.', '.$salidzinasanai.'';
$tweet->post('statuses/update', array('status' => $message)); // Will do.. !

1 个答案:

答案 0 :(得分:0)

这不会在您的表中插入记录,而是更新现有记录 - 因此您没有获得插入ID。

答案是插入数据库,不要更新......您检索ID的方式是正确的 - 除了您不应该使用mysql_*函数的事实。