just add to your while loop a and expression
$query = "SELECT CONCAT('',name,name2,name3,name4,name5,name6,name7,name8,name9,name10) as n FROM $usertable HAVING n LIKE '%$name%'";
$result = mysql_query($query) or DIE("Could not Execute Query on table $usertable");
$i = 0;
if ($result) {
print "Query successful on table $usertable<br><br>";
print "Your Query returned:<br>";
while ($row = mysql_fetch_array($result)&& $i != $maxrows) {
$i++;
print $row['n'] . "<br/>";
}
}
whats the difference between file systems in Linux and windows when using php file commands and stuff?
im doing a PHP project on my windows pc, but it will be running on a linux server
now i need to know what are the main differences when it comes to handling files on different files system using php?
what must i look out for and how to make sure it is multi
thanks alot in advance
whats the difference between file systems in Linux and windows
im doing a project on my windows pc, but it will be running on a linux server
now i need to know what are the main differences when it comes to handling files on different files system?
thanks alot in advance
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.