Posts by LocalHost • 3,256 points
106 posts
-
2
votes3
answers1930
viewsA: Help to change SESSION variables
Well if I were to do, which in case it must be what you want to do I would do so. <?php @session_start(); // Inicia a session. if(!isset($_SESSION['usuario'])){ // Se a Session não existir eu…
-
0
votes3
answers65
viewsA: Help with IF and ELSE at session_start()
Try to start the section at the beginning of the code, and if checks... if(!isset($_SESSION['logo'])){} If not right comment there, maybe I did not understand the question right...…
-
2
votes2
answers177
viewsA: Friendly URL in an automated way with all pages
I don’t know if it’s going to be much help, or if I understand, but I’ll tell you how I use it.. my . htaccess is like this RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond…
-
1
votes1
answer128
viewsA: Why is the page css not loaded when the url gets ? id=
This is probably because Voce passed a relative link to css, so when you change the url, css won’t load. Change that: <link rel="stylesheet" type="text/css" href="css/styleinfo.css"> For...…
-
0
votes2
answers1069
viewsQ: Voice recognition does not work
I recently formatted my laptop and had to reinstall everything, only now my TCC project is error that in the case before had not had. In that code snippet: SpeechRecognitionEngine sre = new…
-
10
votes3
answers1808
views