Skip to content
Top Menu

MetaTag

MetaTag is a Technology or Technical Knowledge Related Blog

  • Home
  • How To
  • PHP
  • Laravel
  • CodeIgniter
  • Cakephp
  • WordPress
  • Python
  • Django
  • Contact
Main Menu
  • You cannot call `.save()` after accessing `serializer.data`.If you need to access data before committing to the database

How to Remove Sidebar from Category Pages in WordPress?
Best Practices for API Responses

How to find an element or tag using Jquery

February 28, 2016Chandan Sharma Comment
The HTML is here: <table class=”table”> <caption>My testing Table</caption> <tr> <td class=””><span>data-1</span></td> <td>data-2</td> </tr> <tr> <td>data-3</td> <td><span>data-4</span></td> </tr> </table> The Script is: // [...]

on check select all checkboxs in jquery

February 24, 2016Chandan Sharma Comment
HTML Code is <div> Select All <input type=”checkbox” name=”select_all” id=”select_all”> </div> <div> <table id=”Optiontable”> <tr> <td> <input type=”checkbox” name=”checkRow” id=”checkRow” value””> Select-1 </td> [...]

How to post with out refreshing the page

February 21, 2016Chandan Sharma Comment
Ajax POST format: request is post to register.php page. All the database insert , update query is written there. connect with jquery library [...]

How to post using ajax

January 24, 2016Chandan Sharma
Here is the ajax format to post a request without refresh the page. var datastring = {‘name’:name, ’email’:email, ‘phone’:phone }; $.ajax({ url:”register.php”, type:”post”, [...]

Submit Register Form without refreshing the page

January 24, 2016Chandan Sharma
<!—- index.php page—-> <html> <body> <!——making jquery library’s link —> <script src=”//code.jquery.com/jquery-1.10.2.js”></script> <script> function validate() { //——–value of fields ——— var name = [...]

Registration Form validation With Javascripts

January 14, 2016Chandan Sharma
<html> <body> <script> function validate() { var name = document.getElementById(“name”).value; var email = document.getElementById(“email”).value; var phone = document.getElementById(“phone”).value; var error_name_id = document.getElementById(“error_name”); var [...]

How to search data from table in php

January 10, 2016Chandan Sharma
———both HTML and php code in s1.php file—————- <form method=”post” action=”s1.php?go” id=”searchform”> <input type=”text” name=”name”> <input type=”submit” name=”submit” value=”Search”> </form>   <?php if [...]

ebs payment gateway integration

January 7, 2016Chandan Sharma Comment
First we have to post this form to ebsĀ  # Make the Hash $hash = “ebskey”.”|”.$_POST[‘account_id’].”|”.$_POST[‘amount’].”|”.$_POST[‘reference_no’].”|”.$_POST[‘return_url’].”|”.$_POST[‘mode’]; $secure_hash = md5($hash);   <?php $hash = [...]

Posts navigation

  • Previous
  • 1
  • …
  • 33
  • 34
  • 35
  • 36

Recent Posts

  • How to Remove Sidebar from Category Pages in WordPress?
  • Best Practices for API Responses
  • Each div contains only 3 items using foreach loops in PHP
  • You cannot call `.save()` after accessing `serializer.data`.If you need to access data before committing to the database
  • How to change the timezone in CodeIgniter 3.1.6
  • How To Remove Notice (1): Undefined index when getting URL Parameters
  • How to Download Facebook Uploaded Videos?
  • Disable Mouse Right Click, Cut, Copy & Paste
  • DISABLE MOUSE RIGHT CLICK
  • How To Disable Copying Text On Blogger Blogs?
Copyright © 2022 MetaTag.
Proudly powered by WordPress. | Theme: Awaken by ThemezHut.