student Posted December 15, 2010 Report Share Posted December 15, 2010 Jautājums šāds: Man no html a href... aisūtās uz nākamo lapu lietotāja id un gribētu uzzināt kā var panākt to,lai var gan būt gan nebūt šis lietotāja id. Piemēram man kodā ir - $userid = htmlspecialchars($_GET["id"]); un panākt lai,ja ir ievadīta adrese bez papildinājuma ?id=1 utt. tad nerādās erors un ja ir pievienots šis userid tad kods dara visu kas paredzēts darīt ar šo id. Ceru ka jautājums ir saprotams :) Quote Link to comment Share on other sites More sharing options...
Blitz Posted December 15, 2010 Report Share Posted December 15, 2010 (edited) if(isset($_GET['id'])) { $userid = htmlspecialchars($_GET["id"]); //dari viskautko ar id } else { //dari kautko bez id } Edited December 15, 2010 by Blitz Quote Link to comment Share on other sites More sharing options...
student Posted December 15, 2010 Author Report Share Posted December 15, 2010 ar if(isset... darbojos un izmantoju.Tikai nemācēju to izmantot priekš šī.Paldies par atbildi! 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.