Satya - Instablogs
Aug 27 2007
The file php.ini is used for setting php directive value. It changes the phpa’s behaviors.What is php.ini file?PHP will dump php.ini file as php.ini.dist and php.ini.recommended. In the absence of php.ini file php can use the default built-in...
Tags:
PHP, config
Aug 25 2007
Mayawati (UP CM) has ordered ban on big retail shop in UP. Why not Mayawati did ban earlier opening of standalone retail outlets in UP. Who will pay the loss Reliance has to bear due to closing of opened outlets.By satya61229... More
Aug 25 2007
War between BCCI and ICL will bring some good news for cricket game in India is what I supposed when ICL was formed. And this has happened. This has forced BCCI to increase match fee for domestic players. In near future it will also promote good cricket...
Aug 24 2007
You can customize the message shown to user when they access Forbidden web page. This is 403 status code header sent by server to browser. ForbiddenYou don’t have permission to access ... on this server.Apache .... Server ........Just add this...
Aug 24 2007
Suppose PHP web page name is conn.php.Page:: conn.php<?phpif (basename($_SERVER[’PHP_SELF’]) == ‘conn.php’) { die(’You cannot load this page directly.’); }$conn = mysql_connect(’127.0.0.1′,...
Aug 24 2007
Some files are login protected in PHP application and some are include files that need not run directly and can hold some important data not for direct public view.For each login-protected page you will write login check script at top of the...
Aug 19 2007
I last visited to Patna 8-10 months back at the time of Dipawali. Then I became happy that now Bihar is changing and I can see that. But in this current visit to Patna, my hope for recovery of lost glory is collapsed. Every road is in bad condition and...
Aug 14 2007
In my 3.5 yrs of experience as Web Developer/Software Engineer I saw variety of corruption in office. These corruptions are part of our society and software companies are not untouched by it. These are in plenty in small to medium level companies. You...
Aug 14 2007
“Corruption is in the root of Indian society”. If a foreigner has said this statement then you might say that I am supporting outsidera’s voice. But it is very truth for our society. Either we do corruption or support corruption. Many...
Aug 11 2007
HTML form’s action attribute is responsible for your form’s action script. You can mention script name directly in <form method=”" action=”" > or you can assign it a value through javascript also.Refer this Javascript...