Bread and cheese all to eat as a poor Iranian family speaking

I bumped into this clip on Facebook and after a few minutes I couldn’t stopped my tears. In this clip a family from Tehran is speaking about their poor condition and children speaking about being hungry and not having much to eat. My images of poverty in Iran always have been clear and I knew that the Islamic Dinosaurs of Iran never did any good to help people in poverty. I believe many of the top position holders in government, party leaders and Ayatollahs have never been poor themselves so they don’t know the mean of being poor.

Ahmadinejad claims that he was voted by millions of poor people for first time as he has offered them justice shares in oil and privatised companies, cheap loans and programs to help the low income household and many more big lies! In fact poverty rates have been increased during his presidential period and I believe all he has done so far is create more poverty.

 

Comedy trial show of Iranian dissidents

The fascist regime of Iran has recently imprisoned, tortured and killed many innocent people and yet another conspiracy is created. The old ugly trick of TV/Trial confession planned for reformists highlighted figures to get rid of them and practically introduces a none republic and solid foundation of fascism Islamic of Iran.

When Ali Abtahi, who served as a vice-president under Khatami period and Atri who are very known dissident’s reformists have appeared on TV for confessions show what I saw was so shocking. First they were looking gutted likewise they have been hanging from a tree for days and so gaunt. Second they have thanked their interrogators and said jail was a very comfortable place for them!

Mohamad Ali Abtahi

Simple PHP function to generate a random string based on Alpha, Numeric, Nozero, MD5 and SHA1 type

Here's a simple function to generate a random string based on Alpha, Numeric, Nozero, MD5 and SHA1 types.

PHP reverse function strrev() and it's alternative

If you ever wondered how to reversing a string using PHP reverse function “strrev()” and write your own function doing the same thing? Oddly I was asked to write my own PHP function to reverse a string and I though to sharing it.

PHP Header() Function - Force header for a file to download in PHP

This either in PHP will help you to sends the files:
<?php

$file 
'folder/yourfile.zip' //Any file *.*

if (! file) {
    die(
'file not found'); //Or do something 
} else {
    
// Set headers
    
header("Cache-Control: public");
    
header("Content-Description: File Transfer");
    
header("Content-Disposition: attachment; filename=$file");
    
header("Content-Type: application/octet-stream");
    
header("Content-Transfer-Encoding: binary");
    
// Read the file from disk
    
readfile($file); 
}

?>