Whats needed next
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Whats needed next
Well if you guys run into any problems Noc is very knowledgable in this so he could help you guys through any speed bumps you might run into with some side videos whilst I stay on the central videos.
Re: Whats needed next
You missed the earlier message I had about not doing that, and hall's response I guess. The videos were in relation to halls being relatively busy and not able to meet your video demand, and me having about an hour or so of wasted time each day.Cooper wrote:oh... i dont mean any vids cos halls' cover everything so far i think...Noctrine wrote:If you tell me exactly what you want, I could probably do a video or two.
i meant that the guys like me that are watching the vids to learn this stuff could pull together and do something as a learning project.
because everyone doing their own little one will just make lots of little games but if we worked together we could make something quite good!
Re: Whats needed next
ah.. sorry dude.
i did think of that after and feel a little silly tbh
i did think of that after and feel a little silly tbh

- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Whats needed next
thanks for the offer to help Noc. This video series has been much more popular than I ever expected. I have been getting alot of emails and PMs on it and I am trying to push them all here so we can help answer questions and everyone can learn from them.
Re: Whats needed next
yeah cool .. anyone who develops a good idea along the same lines as the video .. should be able to post either code and a written explanation .. or post a vid on you tube. . .. i have done a bit of extra work .. (as halls already knows about) .. and im keen for ideas, code, other vids (thanks Noc) . .. but lets keep on the same track ...
Re: Whats needed next
hows this for a logout.php script:
<?php
session_start();
session_destroy();
echo "You are now logged out!";
exit(); ?>
<?php
session_start();
session_destroy();
echo "You are now logged out!";
exit(); ?>
Re: Whats needed next
halls - im hanging for the next exciting installment... 

Re: Whats needed next
Personally I like to put all my functions in one file, cuts back on the file bloat. So my logout looks like this.
Of course its not really optimized yet, I need to convert all my if's to switches.
Code: Select all
if ($process == 'logout'){
session_unset(); // Destroys the session.
header("Location: /"); // Goes back to main
}
Of course its not really optimized yet, I need to convert all my if's to switches.
- hallsofvallhalla
- Site Admin
- Posts: 12026
- Joined: Wed Apr 22, 2009 11:29 pm
Re: Whats needed next
becareful where your header redirect is located too, it can cause issues...
I am working on the next video, try to get it up within a day or two. Had family for the holday
I am working on the next video, try to get it up within a day or two. Had family for the holday
Re: Whats needed next
Well of course I handle all those things like logins and outs before any text is sent