anitak8
anitak8
php training delhi
22 posts
php, web designing , seo training in delhi
Don't wanna be here? Send us removal request.
anitak8 · 8 years ago
Text
Jquery, Ajax Form Submit with PHP,Mysql
Ajax form submission is better and fast way to submit form without page loading .It’s make a nice experience to your users. Below we have written a tutorial on how to submit a form with jquery ajax . You can also consider this as a ajax registration form . http://unitedwebsoft.in/blog/jquery-ajax-form-submit-phpmysql/
0 notes
anitak8 · 8 years ago
Text
Jquery,Ajax file upload in PHP
we have written tutorials for file uploading using Jquery,Ajax in PHP. In this tutorial we will able to upload images without page reloading http://unitedwebsoft.in/blog/jqueryajax-file-upload-php/
0 notes
anitak8 · 8 years ago
Text
SMS Gateway Integration in PHP
Nowadays there are various requirements for integrating SMS gateway in PHP . Some example are sending OTP to user for authentication , sending order details , confirmation details ,sending notification , sales offer etc . Before integrating in PHP, you should have to purchase a good SMS gateway provider You can find lots of SMS gateway provider in google buy searching ex ‘Best SMS gateway provider in Delhi/NCR‘ . After buying it , now it’s time to integrate it in our PHP application .
Well, SMS gateway integration in PHP is really simple process .It doesn’t take too much time. Generally these gateway provides 3 types of plan 1) One way messages ,2) Two way messages, 3) Both ways messages . Here one ways only allow to send message to customer but two way also allow to receive reply messages from customers .
Depending upon SMS Gateway provider , API may quite from each other . Generally we have to pass some parameters to there callback url of API to send messages . There parameters are sender number , receiver number , message content etc . Below I have listed a simple code to send SMS through PHP. You can change or add parameter according to your SMS gateway provider API.
//all parameters in array $apiParams = array(    'user' => 'put_your_username',    'apiKey' => 'put_your_api_key',    'senderID' => 'put_your_sender_id',    'receipientno' => 'put_receiver_contact_no',    'message' => 'Put sms message here' ); //merge API url and parameters $apiUrl = "http://api.domainname.com/http/sendsms?"; foreach($apiParams as $key => $val){    $apiUrl .= $key.'='.urlencode($val).'&'; } $apiUrl = rtrim($apiUrl, "&"); //API call $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $apiUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_exec($ch); curl_close($ch);
Note : Above we used cURL so make sure cURL library enable in PHP .
0 notes
anitak8 · 8 years ago
Link
Generally all errors of laravel are stored in files. However in some cases you can need to send these error to email for better tracking . Below tutorial will guide you to do do.
0 notes
anitak8 · 9 years ago
Link
0 notes
anitak8 · 9 years ago
Text
Magento 2 Create Product Attributes
Attributes are most important part of your catalog, suppose you want to sell t-shirts from your eCommerce website but at same time you also want them to allow choose it’s color, size etc. These are called attributes here .
Below in this tutorials i will guide all steps related to create and assign attribute to your product . magento has some inbuilt attribute like Name, Price, and Description.
http://unitedwebsoft.in/blog/magento-2-create-product-attributes/
0 notes
anitak8 · 9 years ago
Link
Magento 2 introduced some useful commands. Using these command we can easily flush cache, re-index data ,enable/disable modules and lots more . Below listed some useful commands for magento 2 version . Before using this command you should have composer installed on your system .
Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Download and run Composer-Setup.exe from https://getcomposer.org/Composer-Setup.exe if you don’t have installed it . It will install the latest Composer version and set up your PATH so that you can just call composer from any directory in your command line.
0 notes
anitak8 · 9 years ago
Text
Web Development & Mobile App Development Course in Delhi
We at UNITED WEBSOFT TECHNOLOGIES – we provide innovative Web Development course in Delhi , Mobile App Development course in Delhi and have thus been reputed as the leading andBest Web Development Institute in Delhi. Our Web Development Courses & Training in Delhi focuses on all category of people that wish to learn the basics and advanced features & functions of digital marketing correctly and affordably.
With one of the worlds’ best Web and Mobile App training center in India, we have helped trained countless number of students in Delhi and also foreign students. Our training center has all it takes to stand in comparison with the best from other parts of the world, U.S, U.K, you name it; and our learning environment simply makes training fun, exciting and something to look up to on daily basis as is scheduled. We offer Phonegap Course Delhi, PHP, and the best of Mysql Course Delhi, amongst other advanced courses taught by seasoned professional instructors who have many years of hands-on experience in the field!
0 notes
anitak8 · 9 years ago
Link
Magento 2 theming, Magento 2 theme development ,HTML to magento theme ,create new magento theme using parent theme
0 notes
anitak8 · 9 years ago
Link
We at unitedwebsoft.in provide best PHP Training near janakpuri . We have located in the heart of west delhi i.e Tilak Nagar. Someone who interested to build there career as a Web Developer or Designer , can contact us .We provide prefessional advanced level on PHP course . We commit to provide 100% job after training. Even lots of students get placement before training completion ,because we use to send on interview when 90% course finished .You can get on touch via our contact form or directly call at +91 99999 680 96 .
0 notes
anitak8 · 10 years ago
Text
Upcoming changes in PHP 6.0
PHP 6. 0 seems to be to get a fantastic launch. Few things are absolutely preset nevertheless, nevertheless it seems as if it will begin to see the collapse regarding 3 regarding my personal family pet peeves:
http://unitedwebsoft.in/blog/upcoming-changes-in-php-6-0/
0 notes
anitak8 · 10 years ago
Text
Namespacing in PHP
It was some sort of rough trip, when it comes to namespace assistance throughout PHP. One good thing is, it had been included in your language throughout PHP 5. 3, as well as the suitable structure regarding
http://unitedwebsoft.in/blog/namespacing-in-php/
0 notes
anitak8 · 10 years ago
Text
PHP vs. ASP.NET : Web Development courses comparison
Allowed into a challenge regarding a couple of heavyweights. In one corner, we have PHP, typically the most popular scripting language on the internet along with countless specific builders and a fair bigger legion regarding lovers. Inside various other corner, we have the .NET, the software supported through ‘Microsoft’ itself that can make use of just about any. NET reinforced language.
http://unitedwebsoft.in/blog/php-vs-asp-net-web-development-courses-comparison/
0 notes
anitak8 · 10 years ago
Link
MedZul Health is an upcoming Medical tourism company
0 notes
anitak8 · 10 years ago
Link
http://unitedwebsoft.in/php-training-in-delhi.php
0 notes
anitak8 · 11 years ago
Video
youtube
PHP introduction, php variables, data types, php tags ,php editor , php online tutorial by www.unitedwebsoft.in
0 notes
anitak8 · 11 years ago
Link
Hi, friend today i am writing tutorial on php cart system. Well ,if you are a PHP programmer or just fresher ,taking training somewhere, you know that making e-commerce/shopping cart site (cart system in php) is so famous. visit www.unitedwebsoft.in
0 notes