Kasspars Posted August 15, 2019 Report Share Posted August 15, 2019 Varbūt kāds zina servisu (API), kurā var iesūtīt datu vienības json formātā. Tālāk vajag, lai tas serviss piedāvā web interfeisu, kurā es varu uztaisīt tabulu ar manām nodefinētajām kolonnām. Tabulā tiktu attēloti mani iepriekš iesūtītie dati. Varētu pats to visi tasīt, bet baigi negribās, jo tie dati netiks ilgi glabāti un pēc pāris nedēļām nevienam vairs nebūs vajadzīgi Quote Link to comment Share on other sites More sharing options...
briedis Posted August 15, 2019 Report Share Posted August 15, 2019 $array = json_decode($json, true); $cols = [ 'user.fullName' => 'Name', 'user.email' => 'Email', 'something' => 'Somethingl', ]; foreach($array as $row){ foreach($cols as $colKey => $colTitle){ echo "<td>" . array_get($row, $colKey) . '</td>'; } } array_get no Laravel, kas saprot dot pierakstu. Moš pietiek :) A tā savādāk, grūti saprast, ko gribi panākt bez jebkādiem datu exampļiem... Quote Link to comment Share on other sites More sharing options...
Kasspars Posted August 15, 2019 Author Report Share Posted August 15, 2019 Nu es tieši negribu pats rakstīt skriptu. Negribu taisīt datubāzi un tabulu, kur to visu glabāt. Negribu taisīt serveri, kur hostēt tabulu Man vajag online servisu kurā iesūtīt datus un tur smuki tabulā skatīties iesūtītos datus Quote Link to comment Share on other sites More sharing options...
paleto pro Posted August 15, 2019 Report Share Posted August 15, 2019 github + forestry.io Quote Link to comment Share on other sites More sharing options...
Kasspars Posted August 15, 2019 Author Report Share Posted August 15, 2019 44 minutes ago, paleto pro said: github + forestry.io īsti nebūs tas ko vajag Quote Link to comment Share on other sites More sharing options...
Kasspars Posted August 15, 2019 Author Report Share Posted August 15, 2019 Jāpaskatās Google sheets virzienā. Vienīgi besī googles api Quote Link to comment Share on other sites More sharing options...
trm Posted August 16, 2019 Report Share Posted August 16, 2019 mēs izmantojam Zapier. Un tālāk no Zapier uz Google sheets Quote Link to comment Share on other sites More sharing options...
jurgenzz Posted August 20, 2019 Report Share Posted August 20, 2019 On 8/15/2019 at 7:44 PM, Kasspars said: Jāpaskatās Google sheets virzienā. Vienīgi besī googles api Kā reiz šo gribēju ieteikt, tik savā pusē, lai ērtāk, var pārtaisīt par CSV. Quote Link to comment Share on other sites More sharing options...
Kasspars Posted September 18, 2019 Author Report Share Posted September 18, 2019 https://www.formbackend.com Tieši tas, kas vajadzīgs! Vienīgi maksas pakalpojums. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.