open notepad copy paste the below line and save with .htaccess under root directory of your website.. ErrorDocument 404 "<H1>...
php 5 and 4 comparision
http://www.ntchosting.com/encyclopedia/scripting-and-programming/php/php4-php5-comparison/
How to merge two arrays in php
<?php $array1 = array( "color" => "red" , 2 , 4 ); $array2 = array( "a" , "b" , ...
How to combine two arrays in php
<?php $a = array( 'green' , 'red' , 'yellow' ); $b = array( 'avocado' , 'apple' , '...
What is AngularJS
AngularJS is a JavaScript framework. It can be added to an HTML page with a <script> tag. AngularJS It is used for SPA(Single Page A...
What is Native app
A native app , written for a specific hardware platform, will always run faster than a Web app , because there is no translation processing...
what is hybrid app development
Hybrid Mobile Applications. Hybrid development combines the best (or worst) of both the native and HTML5 worlds. We define hybrid as a w...
Method Overloading in PHP using magic methods
PHP Doesn't supporting polymorphism concept method overloading, Instead of this, php provides solution by the magic characters. In th...
PHP Method OverRidding example program
<?php echo "<br/>Method OverRidding supporting example<br/>"; class A { public function fun1($rec) { ...
Write a statement to show the joining of multiple comparisons in PHP?
PHP allows multiple comparisons to be grouped together to determine the condition of the statement. It can be done by using the following s...
How error handling is being handled by PHP?
Error handling is very important in every programming language. PHP uses the trigger to print the error in a program. The example statement...
How can we increase the execution time of a php script?
By the use of void set_time_limit(int seconds) Set the number of seconds a script is allowed to run. If this is reached, the script return...
What is difference between require_once(), require(), include()?
require() includes and evaluates a specific file, if the file is not found then it shows a Fatal Error. require_once() includes only the f...
The major types of Errors in PHP
Notices, Warnings, Parse and Fatal type errors in PHP. Notices: Notices represents non-critical errors, i.e. accessing a variable that h...
The Major Difference between ECHO and PRINT()
echo() and print() are language constructs in PHP, both are used to output strings. The speed of both statements is almost the same. echo...
What is full form of PEAR
PEAR(PHP Extension and Application Repository) is a framework and repository for reusable PHP components. PEAR is a code repository contain...
How to submit form without a submit button
We can achieve the above task by using JavaScript code linked to an event trigger of any form field and call the document...
Popular Posts
- Detecting the Ajax request in Core PHP
- Demanding a price for software development
- Payment Gateway Options and Pricing in India
- How to integrate SEND Grid with Codeigniter
- How to print document content with jquery
- Add one day to the today date in php
- File Upload Conditions helper in Codeigniter
- Address auto fill city, state, district, country, pincode
- Codeigniter 4 Email Code
- How do I run a PHP script using windows Task Scheduler?