mwbouwkamp
Members-
Content Count
23 -
Joined
-
Last visited
About mwbouwkamp
-
Rank
Newbie [Level 1]
-
No Frames, But Still A Nice Menu?
mwbouwkamp replied to mwbouwkamp's topic in Websites and Web Designing
That is exactly what I am looking for. I just hope they don't fix the IE6 "bug" that makes this possible. Also, I started with my post that frames are no longer used a lot. Why is that anyway! -
No Frames, But Still A Nice Menu?
mwbouwkamp replied to mwbouwkamp's topic in Websites and Web Designing
What I mean is, that I want the menu to stay in place also when I scroll down. -
No Frames, But Still A Nice Menu?
mwbouwkamp replied to mwbouwkamp's topic in Websites and Web Designing
It is getting close. The only thing I would prefer is that you don't see any movement. I just want a static menu that is not moving, but which stays positioned at one particular spot on the page. -
mwbouwkamp started following No Frames, But Still A Nice Menu?
-
Hi,So apparently frames are not done anymore. The nice thing about frames was, that you could have a nice menu, which was always positioned at the same spot. I am currently constructing a Joomla page, as I am working on a website that has to be eddited by people that don't know too much about html. Is there any way to get a menu that does not move while scrolling down? Please help.Marco
-
Just for "fun" I switched on the warnings and I got the following warning: Even if I move the "session_start()" to the top of the page and it is the first php command (you can see from the warning that it is on line 8), I still get this warning. ~M Notice from BuffaloHELP: Use the proper bbcode and do not sign off with every post. We all can see who made the reply.
-
My script now starts with "session_start()". The problem is, that each time I reload the page, it makes a new session instead of using the information of the old session. I have php and mysql installed locally on my computer and there is a session file created in my session directory. The problem is, that its excistence is ignored. Also, accepting cookies is enabled.~M
-
Once again, my script is not that difficult... but even if it is, I would like to understand what I am doing wrong as that is the only and best way to learn.~M
-
I have googled this issue a little and it seems that I should start my entire script with "session_start()". The problem is, though, that it regenerates a NEW session, instead of using the old one.~M
-
I am not doing much different. My script can be summarized as: if (isset($_SESSION['loginname'])) { you are already logged in } else { if (submit) { check if the password and username are valid and if so, you are logged in } else { print the form to login } } The problem is that the first line "if (isset($_SESSION['loginname'])" that is supposed to check if there is a login name in the current session is always returning false, even if there is a session with a loginname in there. ~M
-
OK, problem solved: Don't install php and mysql, but instead install easyphp. This way most of the settings are already correct and you don't have to dig into the php.ini and the me.ini!
-
I am using the following code as a login page. I try to start by checking if a session already exists so that people don't have to login each time. The problem is that it is just being ignored. How do I check if a session is already set? if (isset($_SESSION['loginname'])){ print('you were already logged in');}else{ if (submit) { list($users,$passwords,$accounttypes)=GetCurrentUsers($user,$password,$accounttype); $nologin=1; for ($i=0;$i<sizeof($users);$i++) { if (($users[$i]==$loginname) and ($passwords[$i]==crypt($loginpassword,$passwords[$i]))) { $nologin=0; } } } if ($nologin==0) { session_start(); $_SESSION['loginname']=$loginname; print('you are logged in'); } else { print('<form>'); print('<br />Username: <input type="text" name="loginname" size="20">'); print('<br />Password: <input type="password" name="loginpassword" size="20">'); print('<br /><input type="submit" name="submit" value="login">'); print('</form>'); }} Notice from BuffaloHELP: Use proper bbcode
-
If you read the beginning of my original post... I did install the latest version...
-
This is the error message:Unable to connect to the database because: Client does not support authentication protocol requested by server; consider upgrading MySQL clientI do still have a user (root) and I am still able to create new users (both using the mysql command line and by using mysql administrator). Also both services are up and running.M
-
Add it to a ring is a good idea... the only problem is that it is a (for many people) boring page about the research that I am performing. There are not many rings for that.
-
Its good to know that I am not the only one facing this problem. I agree a new laptop is always nice, but also a lot of money (in case you want to have a decent one). I am not sure yet how expensive it is going to be. One of the bad things is that there are currently two blocks of 256 Mb in there I think (although I can only find one of the blocks) and so to upgrade, I actually might have to buy two blocks of 512 Mb and through out my blocks of 256... so that would make it more expensive.M