Advertisement
syarwanarief

aaaaaaa.php

Jun 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. foreach (html->find("p[class=article]" as $judul){
  2. echo $judul->plaintext;
  3. }
  4. foreach (html->find("a[class=article-sub]" as $penulis){
  5. echo $penulis->plaintext;
  6. }
  7. foreach (html->find("a[class=article-action]" as $link){
  8. echo $link->plaintext;
  9. }
  10.  
  11. //bagaimana menyimpan data dari $judul $link ke 1 table
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement