Hello Everyone
Moderator: General Moderators
Hello Everyone
just wanted to say hi
I am new to th PHP world and i figured the best place to get some info would be the lovley forum i hope this place and be of help to me in my journey through learning PHP
Thanks
Owen
I am new to th PHP world and i figured the best place to get some info would be the lovley forum i hope this place and be of help to me in my journey through learning PHP
Thanks
Owen
Re: Hello Everyone
indeed it will...Assured99 wrote:i hope this place and be of help to me in my journey through learning PHP
welcome to the community.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
- daedalus__
- DevNet Resident
- Posts: 1925
- Joined: Thu Feb 09, 2006 4:52 pm
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Hello, and welcome to the community. Wrox Press has put out some very good tech books. You may want to look at some of theirs. Sitepoint has also put very, very good books. Specifically Kevin Yank's "Build Your Own Database Driven Website Using PHP & MySQL". That is one of my favorites for beginners.
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
First Error
Weirdan | Please use
Weirdan | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
Time for my first stupid question
I get this Error : Parse error: parse error, unexpected $end in c:\inetpub\wwwroot\dwmx1\hello.php on line 15
Whats My Problem it seems that ive closed all the brackets correctly, is it something with my test server?Code: Select all
<body>
<?
$hello = "Hello World!";
echo "<p>$hello</p>";
?>
</body>Weirdan | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]The only problem with your code that I see is the use of short tags.
Examples of short tags:
And also ASP tags:
Don't use any of the above... never.
Use only this:
Examples of short tags:
Code: Select all
<?
// Code goes here
?>Code: Select all
<?=
// Code goes here
?>Code: Select all
<%
// Code goes here
%>Use only this:
Code: Select all
<?php
// Code goes here
?>