| | Hi all I need php script to read file like this : file.txt : farsi1 farsi2 farsi3 farsi4 farsi5 farsi6 farsi7 and then put one line at 1 row sql i know i can read all data in file by this code : CODE $fd = fopen ($urladd, "r"); while (!feof ($fd)) { $sou = fgets($fd, 4096); } fclose ($fd); But this code read all file and put in $sou string after while is finish $sou is null I Dont Want $sou string is null i want save $sou at Sql i want line by line can input in another row to sql thanks sorry my en is not very good |

