Hi!
I think your code will look something like :
if(stripos($row[url],"http://") === false)
print "http://" . $row[url];
else
print $row[url];
Please notice that you CAN'T use the == operator because stripos() could (should !) return '0' as the position of the first occurrence of "http://", so it would be == to false, but not === to false. Hope it's clear enough. 😉