<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Alim AJ</title>
    <description>The latest articles on DEV Community by Alim AJ (@liimalim).</description>
    <link>https://dev.to/liimalim</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F530405%2Ff9c5ced4-222e-4bf6-983b-65cb7c228c15.jpeg</url>
      <title>DEV Community: Alim AJ</title>
      <link>https://dev.to/liimalim</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/liimalim"/>
    <language>en</language>
    <item>
      <title>Get form data and POST with JavaScript(jQuery)</title>
      <dc:creator>Alim AJ</dc:creator>
      <pubDate>Tue, 14 Dec 2021 03:30:35 +0000</pubDate>
      <link>https://dev.to/liimalim/get-form-data-and-post-with-javascriptjquery-2kfb</link>
      <guid>https://dev.to/liimalim/get-form-data-and-post-with-javascriptjquery-2kfb</guid>
      <description>&lt;h3&gt;
  
  
  Intro
&lt;/h3&gt;

&lt;p&gt;This article is a &lt;strong&gt;note&lt;/strong&gt; of what I found and applied to fetch data on a form and send it in jquery with the POST method.&lt;/p&gt;

&lt;h3&gt;
  
  
  Try
&lt;/h3&gt;

&lt;p&gt;get form data&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;var fd = new FormData(document.getElementById('filter-data'))
// if you want to add data use append
fd.append('limit',limit);
fd.append('start',start);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;POST data with jquery&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$.ajax({
    url: "your_url",
    method: "POST",
    data: fd,
    cache: false,
    contentType: false,
    processData: false,
    success: function(data){
        // action success
    }
})
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;like if you find this useful&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>jquery</category>
      <category>tutorial</category>
      <category>productivity</category>
    </item>
    <item>
      <title>CodeIgniter RestServer CRUD Dynamic MySQL</title>
      <dc:creator>Alim AJ</dc:creator>
      <pubDate>Fri, 23 Jul 2021 10:37:40 +0000</pubDate>
      <link>https://dev.to/liimalim/codeigniter-restserver-crud-dynamic-mysql-3pah</link>
      <guid>https://dev.to/liimalim/codeigniter-restserver-crud-dynamic-mysql-3pah</guid>
      <description>&lt;p&gt;when I'm making a simple API of create, read, update, delete. it crossed my mind not to create multiple files following the number of tables in the database.&lt;/p&gt;

&lt;p&gt;Therefore, I created a controller file that functions to create, read, update, delete for all tables in the database. which means I have made this REST API dynamic following the number of tables.&lt;/p&gt;

&lt;p&gt;This simple project was created with CodeIgniter 3, and uses a MySQL database. this project is still very young and still needs further development to make it more perfect and reduce bugs.&lt;/p&gt;

&lt;p&gt;You can see this project on my github&lt;br&gt;
&lt;/p&gt;
&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--i3JOwpme--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/github-logo-ba8488d21cd8ee1fee097b8410db9deaa41d0ca30b004c0c63de0a479114156f.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/liimalim"&gt;
        liimalim
      &lt;/a&gt; / &lt;a href="https://github.com/liimalim/codeigniter-restserver-crud-dynamic-mysql"&gt;
        codeigniter-restserver-crud-dynamic-mysql
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      Fully RESTful server implementation for CodeIgniter and makes it dynamic to create, read, update, delete for multiple tables using only one library, one configuration file and one controller.
    &lt;/h3&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;Don't forget to leave a star in &lt;a href="https://github.com/liimalim/codeigniter-restserver-crud-dynamic-mysql"&gt;my repo&lt;/a&gt; on GitHub.&lt;/p&gt;

&lt;p&gt;Happy Coding ❤️&lt;/p&gt;

</description>
      <category>php</category>
      <category>mysql</category>
      <category>api</category>
    </item>
  </channel>
</rss>
