JohnnyDoomo Posted May 15, 2012 Share Posted May 15, 2012 I am trying to use this url shortener that works like this http://lil2u.com/?module=ShortURL&file=Add&mode=API&url=http://www.websitename.com/blah/ However, when I add that in my input field, it displays the exact api line, and my url, instead of processing it, and showing short url that it is suppose to generate. I'm sure this is a really noobie quesiton, but I've searching for the answer and either it's so base level knowledge, there isn't anything, or I'm searching for the wrong terms. I just want it so that an input field is shown on the page, and in it is the short url for that page. I already have the means of generating my current url, but I don't know how to get the api to process it, and only show the shortened url in the input field. Can anybody help me with how I go about doing this. Thanks for any help. Link to comment https://forums.phpfreaks.com/topic/262579-how-to-do-i-use-api-in-input-field/ Share on other sites More sharing options...
The Letter E Posted May 15, 2012 Share Posted May 15, 2012 $shorturl = file_get_contents('http://lil2u.com/?module=ShortURL&file=Add&mode=API&url=http://www.websitename.com/blah/'); print $shorturl; Link to comment https://forums.phpfreaks.com/topic/262579-how-to-do-i-use-api-in-input-field/#findComment-1345734 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.