Jump to content

ludjer

Members
  • Posts

    60
  • Joined

  • Last visited

Everything posted by ludjer

  1. 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/>"; } }
  2. thanks alot that helps alot, now that i know that i think i will use / only now and spaces? do i still have to escape them or not?
  3. 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
  4. 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
×
×
  • Create New...

Important Information

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.