eT` Posted February 25, 2010 Report Share Posted February 25, 2010 (edited) Gribu izvadīt lietotājus meklēšana kam ir noteikta klase ideja uztaisīt <option> ar visām klasēm un katram option piešķirt attiecīgās klases numuru, bet kā darīt ja grib option norādīt visas klases? <option value='0'>Lietotāji</option> <option value='?'>Visi lietotāji</option> SELECT * FROM users WHERE username LIKE '%$name%' AND class='$klase' DB class ir enum('0','1','2','3','4','5') Edited February 25, 2010 by eT` Quote Link to comment Share on other sites More sharing options...
2easy Posted February 25, 2010 Report Share Posted February 25, 2010 atstāj tukšu value="" un tad arī attiecīgi neliec sqlā: AND class='$klase' Quote Link to comment Share on other sites More sharing options...
eT` Posted February 25, 2010 Author Report Share Posted February 25, 2010 (edited) mans risinājums: <select name=status> <option value=empty>Visi lietotāji</option> </select> <? if($_POST["status"] != "empty") { $st = $_POST["status"]; $status = "AND class='$st'"; } else { $status = ""; } $kverijs = mysql_query("SELECT * FROM users WHERE username LIKE '%$name%' $status LIMIT ".$_LIMIT.""); ?> Edited February 25, 2010 by eT` Quote Link to comment Share on other sites More sharing options...
eT` Posted February 25, 2010 Author Report Share Posted February 25, 2010 BUMP! negribējās taisīt jaunu tēmu tapēc ierakstīšu šeit ( 2easy 100% apskatīsies :D ) kā lai ar htaccessu redirektēju no manalapa.lv => manalapa.lv/jaunumi ja man jau HTACCESSā ir rewrite priekš tā, lai ar www redirektētu bez www :/ RewriteCond %{HTTP_HOST} ^www\.(.*) RewriteRule (.*) http://%1/$1 [R=301,L] vai arī ir kāds vienkāršaks veids, kā to izdarīt, jo man index page ir jaunumi un dodoties manalapa.lv tā ir lapa jaunumi bet adrese tāda nav, un it kā gribētos, lai uzreiz kad raksti manalapa.lv aizmet uz manalapa.lv/jaunumi gribēju vēl vienu rewrite likt bet samuģījos... re kādu gribēju likt: RewriteCond %{HTTP_HOST} ^manalapa.lv [L] RewriteRule ^(.*)$ http://manalapa.lv/jaunumi [R=301,L] Quote Link to comment Share on other sites More sharing options...
2easy Posted February 26, 2010 Report Share Posted February 26, 2010 apskatījos :D Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.