Posts Tagged "Web Development"

ASP.NET Variables Won’t Hold Their Value

When it comes to working with ASP.NET most developers who have done standard desktop development always run into the problem of their class variables not retaining their values. You create a variable at the class/page level and expect that when you click a button or change a server control on the page that those variables will be there when its event is triggered. But in many cases they are not ...

Really Simple PHP Login / Logout Script Example

One of the first scripts people new to PHP (or any server-side scripting really) create is a login and logout form for their site. Often times beginners get a little confused as to all the parts necessary to creating such a thing. So I thought it would be helpful if I showed a really basic and easy to use PHP login / logout script. The script uses an existing database ...

Integrate Your Favorite YouTube Channels with JavaScript

Like me you probably have several YouTube channels that you like to follow. Maybe you enjoy that crazy cat video channel or the channel which shows stupid people doing stupid stuff. Either way you want to bring those favorite channels to the world in all their glory on your site. One thing you want to do however is combine those channels into one feed and display the feed on your ...

Easy Way to Post Multiple JavaScript Values to PHP Using jQuery AJAX

For the sake of argument, let's assume you have to pass a plethora of JavaScript values to PHP through a POST submission. Maybe it is an array of numbers or simple point objects. You want to do this quickly and don't want to be bothered with using a hidden form or having to list out a ton of fields in some long data string that you give to a jQuery ...

PHP Wants To Be Your Web Language Of The Future – Part 6 – After 5.5

This is part 6 of a 6 part series looking at the some of the wonderful features of PHP 5.5 and why it might remain a dominate web language for the future. This series was originally written for the Software Developer’s Journal. Through this multi-part series we covered some of the great features that have made version 5.5 a solid branch of development. But where do we go from here? What ...

PHP Wants To Be Your Web Language Of The Future – Part 5 – OPcache

This is part 5 of a 6 part series looking at the some of the wonderful features of PHP 5.5 and why it might remain a dominate web language for the future. This series was originally written for the Software Developer’s Journal. One of the main criticisms of PHP has always been "it is sloooowwww" or "slower than ______" (fill in the blank with some other trendy language). While sometimes this ...