Subdomain Oluşturma ve Silme

Hiç lafı uzatmadan direk kodları sizinle paylaşacağım. Subdomain eklemek için: $cpanel_user = ‘user’; $cpanel_pass = ‘pass’; $cpanel_skin = ‘x3′; $cpanel_host = ‘localhost’; $subdomain = ‘mysubdomain’; // mysubdomain.siteadi.com $sock = fsockopen($cpanel_host,2082); if(!$sock) { print(‘Socket error’); exit(); } $pass = base64_encode(“$cpanel_user:$cpanel_pass”); $in = “GET /frontend/$cpanel_skin/subdomain/doadddomain.html?rootdomain=$cpanel_host&domain=$subdomain\r\n”; $in .= “HTTP/1.0\r\n”; $in .= “Host:$cpanel_host\r\n”; $in .= “Authorization: Basic $pass\r\n”; $in […]

Read More

PHP Regular Expression Örnekleri

1- E-Posta Adresi: $email=”test@example.com”; if(preg_match(‘/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/’,$email)){ echo”Your email is ok.”; } else{ echo”Wrong email address format”; } if(filter_var(‘test+email@fexample.com’, FILTER_VALIDATE_EMAIL)){ echo”Your email is ok.”;}else{echo”Wrong email address format.”; } 2- Kullanıcı Adı: $username=”user_name12″; if(preg_match(‘/^[a-z\d_]{5,20}$/i’,$username)){ echo”Your username is ok.”; }else{ echo”Wrong username format.”; } 3- Telefon Numarası: $phone=”(021)423-2323″;if(preg_match(‘/\(?\d{3}\)?[-\s.]?\d{3}[-\s.]\d{4}/x’,$phone)){ echo”Your phone number is ok.”; }else{ echo”Wrong phone number.”; } 4- […]

Read More

PHP İçin Güzel Bir Kaynak

Normalde PHP kaynak sitesi dendiğinde işi biraz bilen herkesin aklına elbette ki http://www.php.net sitesi gelir. Ancak, gel gelelim, bugün (aslında çok daha eskiden fakat linki yeni buldum) yeni bir adres daha keşfettim ve paylaşmak istedim. Buyrun: http://www.phptherightway.com

Read More