questions/web-development/page/66
Hello @kartik, Using Window.postMessage() This method safely enables cross-origin communication. And if ...READ MORE
Hello, To navigate to another component you can ...READ MORE
Hello @kartik, To update NPM, this worked for ...READ MORE
Hello @kartik, Try gmdate like this: <?php $timestamp=1333699439; echo gmdate("Y-m-d\TH:i:s\Z", $timestamp); ?> Hope it helps!! Thank ...READ MORE
Hello @kartik, Object.values is a new feature . It is ...READ MORE
Hello, Webkit browsers set the height and width ...READ MORE
Hello @kartik, Try this query: mysql_query(" SELECT * FROM `table` WHERE `column` ...READ MORE
Hello @kartik, You can update the cache object ...READ MORE
Hello @kartik, Just use: app.use('/favicon.ico', express.static('images/favicon.ico')); OR In express: //you probably ...READ MORE
Hello @kartik, Express has a helper for this as: app.get('/download', function(req, ...READ MORE
Hello @kartik, You can run individual script entries ...READ MORE
Hello @kartik, Try: var fs = require('fs'); var dir = ...READ MORE
Hello @kartik, Try this: $session = Mage::getSingleton("core/session", array("name"=>"frontend")); // ...READ MORE
Hello @kartik, There are several ways to add ...READ MORE
Hello @kartik, You access the property in the ...READ MORE
Hello @kartik, Use a JOIN in the DELETE statement. DELETE p, pa ...READ MORE
Hello @kartik, If you want to match only ...READ MORE
Hello @kartik, In your request object there is a property ...READ MORE
Hello @kartik, Use this: $sth = mysqli_query($conn, "SELECT ..."); $rows ...READ MORE
Hello, Use $_SESSION directly to set variables. Like this: $_SESSION['name'] = 'stack'; Instead ...READ MORE
Hello @kartik, Use the following code: $('.modal').modal('hide'); Also if you ...READ MORE
Hello @kartik, Here is the way I do ...READ MORE
Hello @kartik, Use event.stopPropagation(). <span onclick="event.stopPropagation(); alert('you clicked inside the ...READ MORE
Hello @kartik, Works with both POST and GET ...READ MORE
Hello @kartik, There is a public getTable() method ...READ MORE
Hello @kartik, You can do that with JavaScript ...READ MORE
Hello @kartik, I used to use this: composer require ...READ MORE
Hello @kartik, Here's how you properly fetch the ...READ MORE
Hello @kartik, Set the name in the form ...READ MORE
Hello, Try this: <?php ob_start(); ?> <xml/> <?php $xml = ob_get_clean(); ...READ MORE
Hello @kartik, You can use basename() and $_SERVER['PHP_SELF'] to get current page ...READ MORE
Hello @kartik, You can use this: function varName( $v ...READ MORE
Hello @kartik, Make the call on an input ...READ MORE
Hello @kartik, I think you can use the ...READ MORE
Hello @kartik, You can change your .htaccess file and insert ...READ MORE
Hello kartik, You can use the following command ...READ MORE
Hello, Use which php in the terminal to see which ...READ MORE
Hello @kartik, Use this code: var w = window.innerWidth; var ...READ MORE
Hello @kartik, The two files you need are ...READ MORE
Hello @kartik, ou can use php_ini_loaded_file() Taken from php.net: $inipath = ...READ MORE
Hello @kartik, Firstly create an object, Then set ...READ MORE
Hello @kartik, add <meta> tag with the token to the ...READ MORE
Hello, If your whole JavaScript code gets processed ...READ MORE
Hello, The module n makes version-management easy: sudo npm install n ...READ MORE
Hello @rentall , Hope it helps!! To know more about ...READ MORE
Hello @kartik, You have a JSON string, not ...READ MORE
Hello @kartik, If empName is a VARCHAR(50) column: ALTER ...READ MORE
Hello @kartik, Use this code: $("someelement").mouseenter(function(){ ...READ MORE
Hello @kartik, You can create a .yarnrc file with the ...READ MORE
Hello @kartik, CURL-less method with PHP5: $url = '/path'; $data ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.