VersiĆ³ funcional al localhost
diff --git a/php/request.php b/php/request.php
index cc16327..3ff9b5a 100644
--- a/php/request.php
+++ b/php/request.php
@@ -1,11 +1,11 @@
 <?php
 	// Define MySQL login variables
-	$servername = "fdb22.awardspace.net";
-	$username = "3155560_users";
-	$password = "btechnoro@fox4news.info";
+	$servername = "localhost"; // "fdb22.awardspace.net";
+	$username = "root"; // "3155560_users";
+	$password = ""; // "btechnoro@fox4news.info";
 
 	// Create connection
-	$conn = new mysqli($servername, $username, $password, "3155560_users");
+	$conn = new mysqli($servername, $username, $password, "pastanaga");
 	if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
 	$conn->set_charset("utf8");