1. Czy da się odczytać ciasteczka z innej strony (może cURL?) i ewentualnie wysłanie ich na e-mail.
2. Dlaczego jak próbuje wejść cURL`em na strone to jest napisane
Cytat
Error ! Database connexion failed
Access denied for user 'root'@'localhost' (using password: NO)
Access denied for user 'root'@'localhost' (using password: NO)
a tu kod
Kod
<?php
$hand = curl_init();
curl_setopt($hand, CURLOPT_URL, 'http://www.strona.pl/');
curl_exec($hand);
curl_close($hand);
?>
$hand = curl_init();
curl_setopt($hand, CURLOPT_URL, 'http://www.strona.pl/');
curl_exec($hand);
curl_close($hand);
?>