
Search In
In PHP, to display the dates for the next six saturdays you need to write the following script.
<?php
$startdate=strtotime("Saturday");
$enddate=strtotime("+6 weeks",$startdate);
while ($startdate < $enddate) {
echo date("M d", $startdate
Hii,
When we talk about adding animation effect in our web page then css is one the best option we use along with any of the programming laungage such as javascript,jQuery etc to give dynamic animation effects.
Using animation effect in a webpa
Dear Developers,
Can I change the location interface to get various location mode options such as high accuracy, battery savings, GPS only in Android. My andoroid in lenovo tab 7 has got only one option which is batterly saving only. Due to this, I
"Difference between var and dynamic in C#"
To understand the differences more clearly, let us go through the following table:
VAR
DYNAMIC
This was introduced in C# 3.0
This was introduced in C# 4.0
In this
JavaScript Debugging
Debugging is very complex for users to writing a JavaScript code without a debugger in web page.
Javascript code might contain syntax errors, or logical errors, which are difficult to find out.
Note : Javascript errors will
JScript to Check or Uncheck Checkbox in a Grid
Inputs:
GridObject: Object of the grid in which checkbox exists
Column: Column name where value is searched
CellValue: Reference cell value
Status: Check or uncheck the checkbox
function CheckUnch
splice() : it is used to delete an item from an array that effects array length.
delete() : it replaces the item with undefined instead of the removing it from the array. It means that it does not effect the array length.
note:Instead of using delet
ORM means "Object Relational Mapping."
it is a technique that we basically used to convert types of data to an Objects
Also as converting any objects to data.
Magento, ORM is stands as Model (which is based on Zend Framework Zend_Db_Adapter)
G
Razor engine in .NET is used in place of ASP engine for running applications.
The page contains ordinary HTML markup, with one addition the @marked Razor code.
<!-- Single statement block -->
@{ var myMessage = "Himanshu Joshi"; }
<
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to use ftp_size() function in php ?
The ftp_size() function is used for returning the size of a specified file on the FTP server.
This function returns the file size in bytes on s
