JYM Coders

JYM Coders JYM Coders are small start-up firm .The services we offer include website development and design, hosting, maintenance, marketing, and analysis.

JYM Coders is a leading Website Design company ,. We are Web Design Company in India, provide range of creative and technical web Solutions including Web design, web development, website hosting, and SEO services.Whether it is developing a successful ECommerce store,
Given our experience and expertise in both commercial Web development and business-to-business sales, we believe we can offer a un

ique and superior service, in comparison to what is currently available. The demand and growth rate for Web development and marketing services in the market is at an all time high and shows no sign of slowing anytime soon. Even more astonishing is the fact that very few Web development companies have taken advantage of the opportunity, as there are no dominating participants in this huge market. We are sure and confident in delivering what our customers demand, keeping in mind time and budget. It has been in our minds and will be there always that as we are the world of technocrats.

29/09/2015

Steps to installing composer and laravel into xampp:

1. Open your php.ini file by locating directory ‘D:\xampp\php\’ and search for “pgsql” and Disable the extension by placing a semicolon in the beginning of the line.
;extension=php_pgsql.dll
also enable SSL extension by un-commenting this line. this will help in download composer setup files.
extension=php_openssl.dll

2. Finally now by running following command you can download composer to your environment. locate to folder where you want to install composer. like ‘D:\xampp\php\’.
php -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));"

3. Create a .bat file in php folder Where you have installed the composer
Now you can create a composer.bat file, C:\xampp\php\composer.bat and include the following code:
OFF
SET SUBDIR=%~dp0
php %SUBDIR%\composer.phar %*

4. Then change to htdocs folder to download laravel
cd..
Then paste this command
composer create-project laravel/laravel your-project-name --prefer-dist

29/09/2015

By using below FBML Query you can get total number of likes for any page easily-

29/09/2015

/* function show upload file size*/
function formatSizeUnits($bytes)
{
if ($bytes >= 1073741824)
{
$bytes = number_format($bytes / 1073741824, 2) . ' GB';
}
elseif ($bytes >= 1048576)
{
$bytes = number_format($bytes / 1048576, 2) . ' MB';
}
elseif ($bytes >= 1024)
{
$bytes = number_format($bytes / 1024, 2) . ' KB';
}
elseif ($bytes > 1)
{
$bytes = $bytes . ' bytes';
}
elseif ($bytes == 1)
{
$bytes = $bytes . ' byte';
}
else
{
$bytes = '0 bytes';
}
return $bytes;
}

09/07/2014

Post On Twitter From a PHP Script

First Of All Download tmhOAuth Library from Github.
After downloading drop the tmhOAuth folder into Project Folder.
And then include the tmhOAuth.php on the particular page.
Example:
include 'tmhOAuth/tmhOAuth.php';
We have to get our access tokens from dev.twitter.com/apps .
After login in to Twitter account.Click the big “Create a new application” button and fill in the required fields.Or Click ontoyour app which you have created through twitter.
After Filling Form go to Details Tab and get the
Consumer Key
Consumer Secret
Access token
Access Secret
After that put all values to the page on which we have included tmhOAuth folder.
include 'tmhOAuth/tmhOAuth.php';
$msg = 'HELLO YOUR MESSAGE';
$tmhOAuth = new tmhOAuth(array(
'consumer_key' => 'ykovIIDDbnl913ibC3WrQ',
'consumer_secret' => 'LYgsSTYr1G8ks3UEHOuZAeU52jGRGGp9lYf3smf8',
'token' => '1037056429-nbJJW8Hnmjhp1LCUsjZo8jGrTcV9pdRh5SeItj0',
'secret' => '4X6TFw8KwWWiv79Oo0WSSq6h5dG3tfprv0rtwjS5TW4',
));
$response = $tmhOAuth->request('POST', $tmhOAuth->url('1.1/statuses/update'), array(
'status' => $msg
));

Address

Jaipur

Website

Alerts

Be the first to know and let us send you an email when JYM Coders posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share