Archive for 'Archive'
How to connect to your MySQL database in PHP?
Posted on27. Dec, 2007 by tutorials007.
In this tutorial I’ll explain you how to connect to your MySQL database in PHP. MySQL databases are used almost always in our coding life. So if you just started with MySQL, or if you want to start, this is the right tutorial for you.
Continue Reading
How and where to submit your tutorials?
Posted on22. Dec, 2007 by tutorials007.
Allright, you wrote your tutorials but now you have no clue where to submit them? Right? Well, I’ll give you a few tips and links that will make your tutorials submitting much more easier. I can’t tell you what’s the best way for you but I can tell you what I found useful in submitting [...]
Continue Reading
Difference between server side and client side
Posted on10. Dec, 2007 by tutorials007.
Difference between client side and server side. Server side Server side script are processed at server after server get request for a PHP document. After request for an PHP document was sent, server is processing PHP code and it generates HTML code that is sent to a client. This means that page which client sees [...]
Continue Reading
Introduction to PHP
Posted on10. Dec, 2007 by tutorials007.
Are you ready to become a PHP web developer? Are you ready to spend few hours and to get in touch with PHP? If you are then read the rest of this tutorial and you will not regret. What is PHP? PHP is an open source server side scripting language. PHP is an scripting language [...]
Continue Reading
Variable types in ASP
Posted on18. Nov, 2007 by tutorials007.
Integer – whole numbers Integer variables are variables where we put or whole number value. EX. 3,12,87,-20 are integer variables while 7.6, 5.8, -3.7 are not integer variables. With term integer goes the terms long and byte.
Continue Reading
Cookies in ASP
Posted on16. Nov, 2007 by tutorials007.
What is a cookie Cookie is a file that is stored in our visitor’s computer. Cookie can be very useful to store our form values…
Continue Reading
Declaring variables in ASP
Posted on16. Nov, 2007 by tutorials007.
To declare some variable we use the key word Dim and then the name of our variable. Ex. Dim Tutorials
Continue Reading
Date & Time in ASP
Posted on13. Nov, 2007 by tutorials007.
Remember: all of the examples of showing date and time in this tutorial show the time of a server. That means, that, if your server is in the UK you’ll have the time that is on that server, in this case UK time.
Continue Reading
Creating your first ASP page
Posted on13. Nov, 2007 by tutorials007.
To make our first ASP page we can use different editors. Active Server Page is a simple text file with .asp extension, so to create an ASP page even Notepad will be useful.
