Advertisement
Guest User

Untitled

a guest
Feb 24th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <?php
  2. require('./functions.php');
  3. /*
  4.  * To change this license header, choose License Headers in Project Properties.
  5.  * To change this template file, choose Tools | Templates
  6.  * and open the template in the editor.
  7.  */
  8.        
  9. /* Variablen fΓΌr connect */
  10. $hostname = "localhost";
  11. $username = "root";
  12. $password = "RdbmS";
  13. $database = "onlineshop";
  14. $sql = "select * from view_1";
  15.  
  16.  
  17. $con1 = connect ($hostname, $username, $password, $database);
  18.  
  19. echo "<p> SQL Abfrage:" .$sql ."<p>";
  20.  
  21. html_liste ($con1, $sql);
  22.  
  23. echo "<br><br><br>";
  24.  
  25. html_liste_tab ($con1, $sql);
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement