parsing - how to parse a list returned by a link using php -


i have link : 'http://www.domainname.com/employee=name' when put on browser return output: ["steve", "charles", "micheal"] how curl link using php

thanks,

$curl = curl_init(); curl_setopt ($curl, curlopt_url, "$url"); $answer=curl_exec ($curl); curl_close ($curl); 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -