<?php | |
$link = mysqli_connect("localhost", "root", "2224psss", "dialer"); | |
/* check connection */ | |
if (mysqli_connect_errno()) { | |
printf("Connect failed: %s\n", mysqli_connect_error()); | |
exit(); | |
} | |
$query = "INSERT INTO `audio` (`audio_id`, `audio_name`, `audio_desc`, `audio_path`, `audio_size`, `audio_date`) | |
VALUES (NULL, 'audio_name', 'Audio desc', 'path', '100MB', CURRENT_TIMESTAMP)"; | |
if(mysqli_query($link, $query)) { | |
printf ("New Record has id %d.\n", mysqli_insert_id($link)); | |
} | |
else { | |
printf("Error: %s\n", mysqli_error($link)); | |
} | |
/* close connection */ | |
mysqli_close($link); | |
?> |
sábado, 25 de julio de 2020
mysql insert
martes, 21 de julio de 2020
IP list from a file
<?php
$ip=file_get_contents("http://149.248.59.112/ip_address.txt");
$ip=explode("\n",$ip);
foreach($ip as $value){
if(!empty($value)){
if (in_array("$value", $ip)) {
echo "Got $value<br>";
}
else {
echo " I\'m sorry";
}
}
}
?>
$ip=file_get_contents("http://149.248.59.112/ip_address.txt");
$ip=explode("\n",$ip);
foreach($ip as $value){
if(!empty($value)){
if (in_array("$value", $ip)) {
echo "Got $value<br>";
}
else {
echo " I\'m sorry";
}
}
}
?>
196.179.2.65 154.104.154.150 102.158.71.137 196.179.45.12 102.156.151.182 196.179.27.230 41.227.238.97
domingo, 12 de julio de 2020
How to Reset Joomla Admin Password?
In ordinary way you can reset Joomla admin password from the admin panel through the User Manager. To do this, you have to be logged in as a Super Administrator.
What if it is impossible to reset Joomla admin passwords in such a way? For example, your website have been hacked, the previous admin person is no longer available or you just have forgotten the password. What you have to do?
Joomla is not simple thing. Joomla has some possibilities to reset admin password in other way. We will show you two methods, follow our instructions and get knowledge in how to reset Joomla admin password:
Suscribirse a:
Entradas (Atom)