string strtoupper
( string $string
)
Example:
$filename=$_FILES["fileToUpload"]["name"];
$ext = substr(strrchr($filename, "."), 1);
echo "<br>File Type is: ".strtoupper($ext...
12:17:00 PM
Achappan Mahalingam
No comments
When you convert NULL into String it will always return a empty valu...
12:09:00 PM
Achappan Mahalingam
1 comment

<span></span> as an in-line element and a <div></div> as a block level element.
While a span allows you to separate things from the
other elements around them on a page or within a document, it does not
cause a line break. This is why it is perfect for in-line styling, like
coloring a single word in a sentence to draw more attention to it.
But...
3:38:00 PM
Achappan Mahalingam
No comments
SQL Injection is possible to alters the existing SQL commands to expose hidden data or to override the valuable ones, or even to execute dangerous system level commands on the database host. This is accomplished by the application taking user input ($_GET and $_POST) and combining it with static parameters to build an SQL query....
12:15:00 PM
Achappan Mahalingam
No comments
PHP does not support unsigned Integers and Integer size can be determined using
the constant PHP_INT_SIZE, and maximum value using the
constant PHP_INT_MA...
1:56:00 PM
Achappan Mahalingam
No comments
for ($col = 0; $col < $highestColumnIndex; ++ $col) {
$cell = $worksheet->getCellByColumnAndRow($col, $row);
$val = $cell->getValue();
echo "Print Value is: ".$VAL;
}
OUTPUT:
Notice: Undefined variable: VAL in C:\xampp\htdocs\trunk_release_cycle04\application\importstatus.php on line 28
SOLUTION:
Variable name in PHP is case-sensitive. Replace $VAL into $...
11:33:00 AM
Achappan Mahalingam
No comments
ProjectCurrent stable version
Agavi1.0
Aiki Framework0.9.1
AppFlower1.3
Ayoola Framework1.4.1
CakePHP2.6.1
Cgiapp1.0
ClanCatsFramework2.0.6
CodeIgniter2.2.1
Drupal7.34
Fat-Free3.4.0
FuelPHP1.7.2
Hazaar MVC1.3
Joomla3.3.6
Kajona4.5
Laravel4.2.16
Lithium0.11
Nette Framework2.2.7
Phalcon1.3.4
PHPixie3
PRADO3.2.4
Qcodo0.4.22
Seagull1.0.4
Silex1.2.3
Symfony2.6.4
TYPO3 Flow2.3.1
Xyster Framework02 Build 01
Yii2.0.2
Zend Framework2.3.4...
11:26:00 AM
Achappan Mahalingam
No comments
Laravel is a free, open source PHP web
application framework, designed for the development of
model–view–controller (MVC) web applications.
Features:
Laravel uses Composer as a dependency manager to add framework-agnostic and Laravel-specific PHP packages available from the Packagist repository.
Eloquent ORM (object-relational mapping) is an advanced PHP implementation of the active record pattern, providing at the same time internal methods...
Subscribe to:
Posts (Atom)