Google gets huge amounts of traffic because its the largest search engine in the world. Apple has nothing to do with that fact. Google is not 'codependent' on Apple whatsoever. If Apple didn't exist, then do you somehow believe that Google wouldn't either? Google's revenue doesn't come from...
How can the hardware go over its limits? You say Android users can't afford an iPhone, then go and complain about the cheap phones that run an older version of Android. Makes complete sense. If you're gonna compare them, you compare the flagship phones (ie - iPhone vs Nexus). Also, being able to...
Don't try to play dumb
Not to mention, using 99% of email 'bombers' is ridiculously stupid. You'll end up getting your (or your mail server's) IP address blacklisted and any competent admin can stop them this within minutes.
You said you only learned a bit, which leads to the question on why you wouldn't want to extend your knowledge on the language. Perl is always a good language to learn, especially if you want to get into system administration. It also helps to know it when developing in Java/C/C++, as it is...
Now increase max_execution_time
None of these are proper fixes for fixing your script though
Using ini_set is not a way to improve portability. Most hosts block you from modifying php.ini settings like that (most should be using suPHP now and allow you to use custom php.ini files on a per...
Or even better:
function generateRandomString($length = 10) {
return substr(str_shuffle(md5(time())), 0, $length);
}
echo generateRandomString();
But if you want to make it truly random, use /dev/urandom for Unix based systems
Adding/removing characters would be done exactly the same...
Or can just put it as a function:
function generateRandomString($length = 10) {
return substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$"), 0, $length);
}
echo generateRandomString()...
Flush your DNS cache
DNS propagation can take up to 48 hours
http://leafdns.com/index.cgi?testid=1F1AC294
Does the A record match the IP address in your cPanel?