Google API - URL Shortener with PHP

后端 未结 8 2133
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-02 12:24

My code is below. The URL shortening service works, but it doesn\'t when I insert my $POST. Does anyone know how to fix this my looking at the code?



        
8条回答
  •  不要未来只要你来
    2021-02-02 12:50

    replace $longUrl = 'http://www.example.com/XXXXX/XX/$_POST['qrname']';

    with the following

    $longUrl = 'http://www.example.com/XXXXX/XX/{$_POST['qrname']}';

提交回复
热议问题