Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. http://localhost/practica/productos/servicio-web-basico/
  2.  
  3. http://localhost/practica/servicio-web-basico/
  4.  
  5. id_service url title
  6. 1 servicio-web-basico/ Servicio Web
  7.  
  8. if (isset($_GET['id'])){
  9. $id = $_GET['id'];
  10. $sql = "SELECT * FROM services WHERE url='".$id."'";
  11. $result = mysqli_query($con, $sql);
  12.  
  13. if(mysqli_num_rows($result) > 0){
  14. while ($row = mysqli_fetch_array($result)) {
  15. $id = $row['id_service'];
  16. $title = $row['title'];
  17. }
  18. }
  19. }
  20.  
  21. id_service url title
  22. 1 /g/f/producto/servicio-web-basico/ Servicio Web
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement