Skip to content

Instantly share code, notes, and snippets.

@svale
svale / export.php
Last active June 11, 2018 13:51 — forked from engram-design/export.php
ExpressionEngine PHP Export into JSON
<?php
header('Content-type: application/json; charset=utf-8'); //Setting the page Content-type
$content = array();
$channel = $_GET['id'];
$fields_query_string = "SELECT * FROM exp_channel_fields LEFT JOIN exp_channels ON exp_channel_fields.group_id = exp_channels.field_group WHERE exp_channels.channel_id = '$channel'";
$entries_query_string = "SELECT * FROM exp_channel_data cd INNER JOIN exp_channel_titles ct ON cd.entry_id = ct.entry_id WHERE cd.channel_id = '$channel'";
// query single field
if(isset($_GET['field'])) {