Skip to content

Instantly share code, notes, and snippets.

View odthomas's full-sized avatar

Thomas Sebastian odthomas

  • Student, Innovator,Researcher, learner
  • mysore
View GitHub Profile
@odthomas
odthomas / create_record.php
Created August 14, 2020 11:24 — forked from kasrak/create_record.php
Create a record in Airtable using PHP
<?php
$data = array(
"fields" => array(
"Name" => "Hello world"
)
);
$data_json = json_encode($data);
$ch = curl_init("https://api.airtable.com/v0/YOUR_BASE_ID/YOUR_TABLE_NAME?api_key=YOUR_API_KEY");