
Search In
While integrating the Google map we need to display the location according to the latitude and the longitude.
So in that case we need to make the use of the marker functionality for displaying it.
So if we want to change the image that the location
As we know cursor in mongoDB can be defined as return value of query run to mongoDB. The information of can be display using cursor.explain() function as show in below:
db.collection.find().explain()
The explain() method returns a document with th
Example of Stored Procedure using INOUT mode parameter:
INOUT mode is used when you pass and want to get the result using same parameter. Using INOUT mode parameter we can pass the argument to the Stored Procedure and also can get the result with th
Effort variance is the term used in QA to refer the difference in the Planned effort against Actual effort. Here effort is in the terms of Hours. To calculate the Effort variance we use the following formula :
Actual Effort - Planned Effort
-------
Hi,
My code working in my locahost wamp server. But if I uploaded it to my hosting server it's not working.
Please give solution. Or reason for this problem. Thanks
Here is my code :
<?php
session_start();
if(!isset($_GET['subm
Hello guys,
JSON is a collection of name/value pairs, and it's in various languages, JSON is like as an object, record, struct, dictionary, hash table, keyed list, or associative array. JSON is an ordered list of values and in many languages, it is
Hello Guys,
I will explain that how to extract values from JSONArray String in Javascript.
For example we have this jsonarray string below:
var jsonarraystr ='[{
"city": "Jaipur",
"state": "Rajasthan",
},
{
If you want to use browse method in OpenERP use below code -
def _get_company(self, cr, uid, context=None):
user_pool = self.pool.get('res.users')
company_pool = self.pool.get('res.company')
user = user_po
Hi guys.
I have a problem in adding a button to a page. When I add a simple button to a page and reload the page it loads correctly but when I click on the button I get the following error:
"Failed to load viewstate. The control tree into which views
First you need to create a new folder directory inside root folder and create index.php where you need to create cookie.
$mysecurecookie="123456";
setcookie("admincookie",$mysecurecookie,0,"/");
header("Location: /administrator/index.php");
Now
