Recent content by anblik

  1. A

    Delete an image using PHP?

    First add the next function to your file: function delete_images_by_refnum($image_folder, $ref_num) { $d = opendir($image_folder);' if(!is_resource($d)) return; while($f = readdir($d)) { if(substr($f, 0, strlen($ref_num)+1) == $ref_num + '_') unlink ($image_folder.'/'.$f); }...
  2. A

    Is there any news that Tagged.com will have a Mobile Application?

    wether tagged.com support mobile version or not, you can still surf tagged.com from your smartphone mobile browser. Only difference i sthat, if Tagged.com support mobile version, you will see clean page otherwise the mobile will download entire website just like normal desktop/Laptop browser.
  3. A

    HTML code for looping videos?

    For sounds, both MSIE and Netscape recognize TRUE and FALSE. FALSE is the default. <EMBED SRC="video.mp4" LOOP=TRUE>
  4. A

    HTML code for looping videos?

    For sounds, both MSIE and Netscape recognize TRUE and FALSE. FALSE is the default. <EMBED SRC="video.mp4" LOOP=TRUE>
Back
Top