| Server IP : 217.160.0.143 / Your IP : 216.73.217.84 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u89353126 ( 3190106) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/36/d682636120/htdocs/copia_seguridad/public_html/ |
Upload File : |
<?php
/* Connecting, selecting database */
/* Please change the values below to connect to the users database...*/
$mysqli_host="canaryadminservicesc.ipagemysql.com";
$mysqli_user="oS59Xk6q8gR8cH0";
$mysqli_password="Ugm7FqiAWKOuJr1x";
$my_database = "wordpress_f7gc3ackba";
$table_name = "wp_bxfp_options";
/*Please Do not change anything below this line */
$link = mysqli_connect("$mysqli_host", "$mysqli_user", "$mysqli_password", "$my_database")
or die("Could not connect : " . mysqli_error($link));
echo "Connected successfully";
mysqli_select_db($link, "$my_database") or die("Could not select database");
/* Performing SQL query */
$query = "SELECT * FROM $table_name LIMIT 3";
$result = mysqli_query($link, $query) or die("Query failed, but please ignore the error message : " . mysqli_error($link));
/* Printing results in HTML */
echo "<table>\n";
while ($line = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
echo "\t<tr>\n";
foreach ($line as $col_value) {
echo "\t\t<td>$col_value</td>\n";
}
echo "\t</tr>\n";
}
echo "</table>\n";
/* Free resultset */
mysqli_free_result($result);
/* Closing connection */
mysqli_close($link);
?>