<link rel=”shortcut icon” type=”image/x-icon” href=”/favicon.ico” /> <link rel=”icon” type=”image/x-icon” href=”/favicon.ico” />
Category Archives: Programming
PHP remove custom tags strip_tags
<?php $text = ‘<p>Test paragraph.</p><!– Comment –> <a href=”#fragment”>Other text</a>’; echo strip_tags($text); echo “\n”; // Allow <p> and <a> echo strip_tags($text, ‘<p><a>’); ?>
flash external xml into array
flash external xml into array im attempting to take data in from an xml file and make it into an array in flash… below is the code im using- the problem i am having is that it dosent trace anything Code: var xmlDoc:XML = new XML(); System.useCodepage = true; xmlDoc.ignoreWhite = true; xmlDoc.onLoad = function(ok:Boolean) …
PHP Automatic Login Using Curl
If you’are lazy people like me. This script may help u. This script is to automated our login to some site.You must have cURL installed to use this script.
IE8 & ADOBE FLASH PLAYER FIX
Hello, you either have JavaScript turned off or an old version of Adobe’s Flash Player. Get the latest Flash player. Since Javascript was enabled, in order to check whether this was a problem of Youtube’s site only, I browse to other sites that I know use flash tech to find that I was really unable …
Installing mcrypt – what to do to work with php
After a lot of research, as I couldn’t find answers on forums and other places. I found on sourceforge.net they released some rpm packages to integrate mcrypt and mhash with php. First we need to install mcrypt and mhash as follows: 1) Install mcrypt & mhash yum install mcrypt* yum install mhash* answer y to …
Continue reading “Installing mcrypt – what to do to work with php”