25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

qrcode.php 124 B

3 yıl önce
12345
  1. <?php
  2. error_reporting(E_ERROR);
  3. require_once 'phpqrcode/phpqrcode.php';
  4. $url = urldecode($_GET["data"]);
  5. QRcode::png($url);