我通過這個鏈接如何同時將一些數據導入數據庫表?
https://api.twitter.com/1.1/search/tweets.json?q=('[]')&lang=en&result_type=popular&count=100
獲取流行的微博和我使用此代碼鳴叫數據導入到數據庫
mysql_query('SET NAMES \'utf8\'');
mysql_query("INSERT INTO Tweets (id,username,name,tweet,media) VALUES('$id','$uname','$jname','$twitt','$mida')")
or die(mysql_error());
($id
,$username
和其他變量工作得很好,沒有任何問題。) 你可以看到Twitter的鏈接,它獲取100個流行的微博,但我曾經數據導入到數據庫的代碼只是將它的最新結果(最新流行的tweet) 現在我的問題是,我怎麼能導入所有100個鳴叫到數據庫時間? 我使用PHP
***請[停止使用'mysql_ *'功能](http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql-functions-in-php)。*** [這些擴展名](http://php.net/manual/en/migration70.removed-exts-sapis.php)已在PHP 7中刪除。瞭解[prepared](http://en.wikipedia.org/wiki/Prepared_statement)爲[PDO](http://php.net/manual/en/pdo.prepared-statements.php)和[庫MySQLi]語句(http://php.net/manual/en/mysqli.quickstart。 prepared-statements.php)並考慮使用PDO,[這真的很簡單](http://jayblanchard.net/demystifying_php_pdo.html)。 –
[小博](http://bobby-tables.com/)說***腳本是在對SQL注入攻擊的風險。(http://stackoverflow.com/questions/60174/how-can- I-防止-SQL注入式-PHP)***。即使[轉義字符串](http://stackoverflow.com/questions/5741187/sql-injection-that-gets-around-mysql-real-escape-string)是不安全的! –
現在安全並不重要。你能幫我解決我的問題嗎? – Ali