Advertisement
sageslayers

Simbada-XML-Index

Dec 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. <?php
  2. //xml parser
  3. $xml = simplexml_load_file("mahasiswa.xml") or die ("Error Gagal") ; ?>
  4.  
  5. <html>
  6.     <head>
  7.         <link href='https://fonts.googleapis.com/css?family=Dekko' rel='stylesheet'>
  8.         <style>
  9.             body {
  10.              font-family: 'Dekko';
  11.              font-size: 22px;
  12.              
  13.             }
  14.         </style>
  15.        
  16.         <title>
  17.             Data Mahasiswa
  18.         </title>
  19.     <head/>
  20.  
  21.     <body>
  22.         <h1>
  23.             <marquee> Semua Mahasiswa <marquee/>
  24.         </h1>
  25.             <?php foreach ( $xml -> children() as $mahasiswa ) { ?>
  26.                 <b>NIM : <?php echo $mahasiswa["nim"];?> </b></br>
  27.                 NAMA : <?php echo $mahasiswa->nama;?>  </br>
  28.                 ALAMAT : <?php echo $mahasiswa->alamat;?>  </br></br>
  29.             <?php } ?>
  30.     </body>
  31.    
  32.  
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement