[Solved] Php read error from file [closed]


You have the wrong syntax in mouseover and mouseout code:

Replace :

onmouseover="this.src=\'/img/language_selection/us.png"\'

Withe the below code:

onmouseover="this.src=\'/img/language_selection/us.png\'"
                                                      ^^^

Here the single quota is outside on the double quota. so change it every mouseover and mouseout events.

2

solved Php read error from file [closed]