Hi all
i have a txt file as this:
usa=washington
russian=moscow
italy=rome
france=paris
england=london
I must obtain only the values (after =) and only for some parameters and put it in variables: example,
$moscow = "moscow";
$paris = "paris";
I use explode but this function only print
parameters>value
Can you help me? :p