tutorial 4 PHP AND SQL

lordsofvine

New Member
Messages
41
Reaction score
0
Points
0
can anyone help me, how to start or give some complete datas than you so much
 

Scoochi2

New Member
Messages
185
Reaction score
0
Points
0
Have a look through PHP.net.
It will help you get started, and will be an invaluable use should you decide to stick with PHP.

I find the best way to learn how to do it is to do it. Start by making a few very simple pages.
I trust you know HTML already, yes? :)

Create a page called 'test.php'.
In the page, put the following:
Code:
<?php
echo "hello!";
?>
The first line means "start interpreting as PHP" and the last line means "stop interpreting as PHP".
Everything between those must be and must only be PHP code.

The second line features a built in function. The role of echo is simply to output whatever you tell it to. In this case, hello!. Open test.php in your browser, and it should simply say hello!
 
Top