I hereby claim:
- I am suthaharan on github.
- I am suthaharan (https://keybase.io/suthaharan) on keybase.
- I have a public key ASB5AYTz2uMzlRGd5d-MrOxMVhxvjJPKWrORHYetrTOuXAo
To claim this, I am signing this object:
<?php | |
phpinfo(); | |
?> |
I hereby claim:
To claim this, I am signing this object:
<VirtualHost *:80> | |
DocumentRoot "C:/xampp/htdocs/connectweb" | |
DirectoryIndex index.php index.html | |
ServerName connectweb | |
<Directory "C:/xampp/htdocs/connectweb"> | |
AllowOverride All | |
Require all granted | |
</Directory> | |
ErrorLog "C:/xampp/htdocs/connectweb_log" | |
</VirtualHost> |
var connection = indexedDB.open('<DBNAME>', <Version#>); | |
connection.onsuccess = (event) => { | |
const db = event.target.result; | |
// get all contacts | |
getAllContacts(db); | |
}; | |
function getAllContacts(db) { |